Files
LanMountainDesktop/LanMontainDesktop/Views/Components/ClockWidget.axaml

26 lines
998 B
Plaintext
Raw Normal View History

2026-02-27 13:43:27 +08:00
<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"
mc:Ignorable="d"
d:DesignWidth="220"
d:DesignHeight="70"
x:Class="LanMontainDesktop.Views.Components.ClockWidget">
2026-02-27 15:15:09 +08:00
<Border x:Name="RootBorder"
Padding="8"
2026-02-27 19:27:38 +08:00
CornerRadius="0"
BorderBrush="Transparent"
BorderThickness="0"
Background="Transparent">
2026-02-27 13:43:27 +08:00
<TextBlock x:Name="TimeTextBlock"
HorizontalAlignment="Center"
VerticalAlignment="Center"
2026-02-27 15:15:09 +08:00
TextAlignment="Center"
2026-02-27 13:43:27 +08:00
FontSize="26"
FontWeight="SemiBold"
2026-02-27 19:27:38 +08:00
Foreground="{DynamicResource AdaptiveTextPrimaryBrush}" />
2026-02-27 13:43:27 +08:00
</Border>
</UserControl>