mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
32 lines
1.3 KiB
XML
32 lines
1.3 KiB
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"
|
|
mc:Ignorable="d"
|
|
d:DesignWidth="180"
|
|
d:DesignHeight="48"
|
|
x:Class="LanMountainDesktop.Views.Components.ClockWidget">
|
|
|
|
<Border x:Name="RootBorder"
|
|
Classes="surface-translucent-panel"
|
|
Padding="0"
|
|
CornerRadius="{DynamicResource DesignCornerRadiusComponent}">
|
|
<StackPanel Orientation="Horizontal"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center">
|
|
<TextBlock x:Name="MainTimeTextBlock"
|
|
FontSize="18"
|
|
FontWeight="SemiBold"
|
|
Foreground="{DynamicResource AdaptiveTextPrimaryBrush}" />
|
|
<TextBlock x:Name="SecondsTextBlock"
|
|
FontSize="12"
|
|
FontWeight="Regular"
|
|
Opacity="0.75"
|
|
Margin="4,2,0,0"
|
|
VerticalAlignment="Center"
|
|
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}" />
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
</UserControl>
|