Files
LanMountainDesktop/LanMountainDesktop.AirAppHost/WorldClockAirAppView.axaml

40 lines
1.7 KiB
Plaintext
Raw Normal View History

2026-05-14 19:44:01 +08:00
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="LanMountainDesktop.AirAppHost.WorldClockAirAppView">
<Grid RowDefinitions="*,Auto"
2026-05-18 08:30:40 +08:00
Margin="18,0,18,16">
2026-05-14 19:44:01 +08:00
<StackPanel HorizontalAlignment="Center"
VerticalAlignment="Center"
2026-05-18 08:30:40 +08:00
Spacing="8">
2026-05-14 19:44:01 +08:00
<TextBlock x:Name="TimeTextBlock"
Text="00:00:00"
2026-05-18 08:30:40 +08:00
FontSize="42"
2026-05-14 19:44:01 +08:00
FontWeight="SemiBold"
LetterSpacing="0"
Foreground="{DynamicResource AirAppTitleTextBrush}"
HorizontalAlignment="Center" />
<TextBlock x:Name="DateTextBlock"
Text="0000-00-00"
2026-05-18 08:30:40 +08:00
FontSize="14"
2026-05-14 19:44:01 +08:00
FontWeight="Medium"
Foreground="{DynamicResource AirAppSecondaryTextBrush}"
HorizontalAlignment="Center" />
<TextBlock x:Name="TimeZoneTextBlock"
Text="Local Time"
2026-05-18 08:30:40 +08:00
FontSize="12"
2026-05-14 19:44:01 +08:00
Foreground="{DynamicResource AirAppSecondaryTextBrush}"
HorizontalAlignment="Center" />
</StackPanel>
<Border Grid.Row="1"
HorizontalAlignment="Center"
Padding="12,7"
CornerRadius="999"
Background="#112D73E5">
<TextBlock x:Name="SessionTextBlock"
FontSize="11"
Foreground="{DynamicResource AirAppAccentBrush}" />
</Border>
</Grid>
</UserControl>