mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
20 lines
827 B
XML
20 lines
827 B
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:fi="using:FluentIcons.Avalonia"
|
|
x:Class="LanMountainDesktop.Controls.IconText">
|
|
|
|
<StackPanel Orientation="Horizontal"
|
|
Spacing="8"
|
|
VerticalAlignment="Center">
|
|
<fi:FluentIcon x:Name="IconElement"
|
|
Foreground="{DynamicResource AdaptiveTextPrimaryBrush}"
|
|
FontSize="14"
|
|
VerticalAlignment="Center" />
|
|
<TextBlock x:Name="TextElement"
|
|
Foreground="{DynamicResource AdaptiveTextPrimaryBrush}"
|
|
FontSize="14"
|
|
FontWeight="Medium"
|
|
VerticalAlignment="Center" />
|
|
</StackPanel>
|
|
</UserControl>
|