mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 16:14:28 +08:00
23 lines
1020 B
XML
23 lines
1020 B
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:md="clr-namespace:Markdown.Avalonia;assembly=Markdown.Avalonia"
|
|
mc:Ignorable="d"
|
|
d:DesignWidth="200"
|
|
d:DesignHeight="48"
|
|
x:Class="LanMountainDesktop.Views.Components.TextCapsuleWidget">
|
|
|
|
<Border x:Name="RootBorder"
|
|
Classes="surface-translucent-panel"
|
|
Padding="0"
|
|
CornerRadius="{DynamicResource DesignCornerRadiusComponent}">
|
|
<md:MarkdownScrollViewer x:Name="MarkdownViewer"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Margin="12,6"
|
|
MaxWidth="400" />
|
|
</Border>
|
|
|
|
</UserControl>
|