Files
community/Ink Canvas/Windows/SeewoStyleTimerWindow.xaml
T

330 lines
29 KiB
XML
Raw Normal View History

2025-10-04 16:14:56 +08:00
<Window x:Class="Ink_Canvas.SeewoStyleTimerWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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:local="clr-namespace:Ink_Canvas"
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
ui:ThemeManager.RequestedTheme="Light" Topmost="True" Background="Transparent"
mc:Ignorable="d" WindowStyle="None" AllowsTransparency="True"
Loaded="Window_Loaded" Closing="Window_Closing" WindowStartupLocation="CenterScreen"
Title="Ink Canvas 画板 - 计时器" Height="400" Width="600">
2025-10-04 22:30:40 +08:00
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="../Resources/Styles/Light.xaml"/>
<ResourceDictionary Source="../Resources/Styles/Dark.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Window.Resources>
2025-10-04 21:55:55 +08:00
<Border Background="{DynamicResource SeewoTimerWindowBackground}" CornerRadius="15" BorderThickness="1" BorderBrush="{DynamicResource SeewoTimerWindowBorderBrush}" Margin="10">
2025-10-04 16:14:56 +08:00
<Grid>
<!-- 主要内容区域 -->
2025-10-04 16:21:14 +08:00
<Grid>
<!-- 使用Viewbox自动缩放内容 -->
<Viewbox x:Name="MainViewController" Margin="20,20,20,20">
<Grid Height="350" Width="600">
<!-- 顶部标题栏 -->
2025-10-04 21:55:55 +08:00
<Grid Height="50" Background="{DynamicResource SeewoTimerWindowBackground}" x:Name="TitleBar" HorizontalAlignment="Stretch" VerticalAlignment="Top">
2025-10-04 16:21:14 +08:00
<TextBlock Text="计时" FontSize="20" FontWeight="Bold"
HorizontalAlignment="Left" VerticalAlignment="Center"
2025-10-04 21:55:55 +08:00
Margin="22,0,0,0" Foreground="{DynamicResource SeewoTimerWindowTitleForeground}" x:Name="TitleText"/>
2025-10-04 16:21:14 +08:00
<Border x:Name="BtnClose" MouseUp="BtnClose_MouseUp"
HorizontalAlignment="Right" VerticalAlignment="Center"
2025-10-04 21:55:55 +08:00
Margin="0,0,22,0" Background="{DynamicResource SeewoTimerWindowButtonBackground}" Height="30" Width="30"
2025-10-04 16:21:14 +08:00
CornerRadius="15" Cursor="Hand">
<TextBlock Text="×" FontSize="16" FontWeight="Bold"
HorizontalAlignment="Center" VerticalAlignment="Center"
2025-10-04 21:55:55 +08:00
Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Border>
</Grid>
<!-- 6位数字显示区域 -->
<Grid HorizontalAlignment="Center" VerticalAlignment="Center"
x:Name="MainDisplayGrid">
<!-- 6位数字水平排列 -->
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center"
x:Name="DigitsPanel" Margin="0,-25,0,25">
<!-- 小时组(十位和个位) -->
<Grid Margin="0,0,30,0" HorizontalAlignment="Center" Width="120">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
<!-- 第1位数字(小时十位) -->
<Grid Margin="0,0,15,0">
<StackPanel Orientation="Vertical" HorizontalAlignment="Center">
<!-- 上方+按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit1PlusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit1Plus_Click" Cursor="Hand" Margin="0,0,0,8">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="+" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
<!-- 数字显示 -->
<TextBlock x:Name="Digit1Display" Text="0" FontSize="64" FontWeight="Bold"
2025-10-04 21:55:55 +08:00
HorizontalAlignment="Center" Foreground="{DynamicResource SeewoTimerWindowDigitForeground}" Margin="0,0,0,8"/>
2025-10-04 16:21:14 +08:00
<!-- 下方-按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit1MinusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit1Minus_Click" Cursor="Hand">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="-" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
</StackPanel>
</Grid>
2025-10-04 16:14:56 +08:00
2025-10-04 16:21:14 +08:00
<!-- 第2位数字(小时个位) -->
<Grid>
<StackPanel Orientation="Vertical" HorizontalAlignment="Center">
<!-- 上方+按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit2PlusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit2Plus_Click" Cursor="Hand" Margin="0,0,0,8">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="+" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
<!-- 数字显示 -->
<TextBlock x:Name="Digit2Display" Text="0" FontSize="64" FontWeight="Bold"
2025-10-04 21:55:55 +08:00
HorizontalAlignment="Center" Foreground="{DynamicResource SeewoTimerWindowDigitForeground}" Margin="0,0,0,8"/>
2025-10-04 16:21:14 +08:00
<!-- 下方-按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit2MinusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit2Minus_Click" Cursor="Hand">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="-" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
</StackPanel>
</Grid>
2025-10-04 16:14:56 +08:00
</StackPanel>
2025-10-04 16:21:14 +08:00
<!-- 时标签 -->
<TextBlock Text="时" FontSize="16" HorizontalAlignment="Center"
2025-10-04 21:55:55 +08:00
Foreground="{DynamicResource SeewoTimerWindowButtonForeground}" Margin="0,112,0,-13"/>
2025-10-04 16:21:14 +08:00
</Grid>
2025-10-04 16:14:56 +08:00
2025-10-04 16:21:14 +08:00
<!-- 分钟组(十位和个位) -->
<Grid Margin="0,0,30,0" HorizontalAlignment="Center" Width="120">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
<!-- 第3位数字(分钟十位) -->
<Grid Margin="0,0,15,0">
<StackPanel Orientation="Vertical" HorizontalAlignment="Center">
<!-- 上方+按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit3PlusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit3Plus_Click" Cursor="Hand" Margin="0,0,0,8">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="+" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
<!-- 数字显示 -->
<TextBlock x:Name="Digit3Display" Text="0" FontSize="64" FontWeight="Bold"
2025-10-04 21:55:55 +08:00
HorizontalAlignment="Center" Foreground="{DynamicResource SeewoTimerWindowDigitForeground}" Margin="0,0,0,8"/>
2025-10-04 16:21:14 +08:00
<!-- 下方-按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit3MinusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit3Minus_Click" Cursor="Hand">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="-" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
</StackPanel>
</Grid>
2025-10-04 16:14:56 +08:00
2025-10-04 16:21:14 +08:00
<!-- 第4位数字(分钟个位) -->
<Grid>
<StackPanel Orientation="Vertical" HorizontalAlignment="Center">
<!-- 上方+按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit4PlusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit4Plus_Click" Cursor="Hand" Margin="0,0,0,8">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="+" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
<!-- 数字显示 -->
<TextBlock x:Name="Digit4Display" Text="5" FontSize="64" FontWeight="Bold"
2025-10-04 21:55:55 +08:00
HorizontalAlignment="Center" Foreground="{DynamicResource SeewoTimerWindowDigitForeground}" Margin="0,0,0,8"/>
2025-10-04 16:21:14 +08:00
<!-- 下方-按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit4MinusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit4Minus_Click" Cursor="Hand">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="-" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
</StackPanel>
</Grid>
2025-10-04 16:14:56 +08:00
</StackPanel>
2025-10-04 16:21:14 +08:00
<!-- 分标签 -->
<TextBlock Text="分" FontSize="16" HorizontalAlignment="Center"
2025-10-04 21:55:55 +08:00
Foreground="{DynamicResource SeewoTimerWindowButtonForeground}" Margin="0,112,0,-12"/>
2025-10-04 16:21:14 +08:00
</Grid>
2025-10-04 16:14:56 +08:00
2025-10-04 16:21:14 +08:00
<!-- 秒组(十位和个位) -->
<Grid Width="120">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
<!-- 第5位数字(秒十位) -->
<Grid Margin="0,0,15,0">
<StackPanel Orientation="Vertical" HorizontalAlignment="Center">
<!-- 上方+按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit5PlusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit5Plus_Click" Cursor="Hand" Margin="0,0,0,8">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="+" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
<!-- 数字显示 -->
<TextBlock x:Name="Digit5Display" Text="0" FontSize="64" FontWeight="Bold"
2025-10-04 21:55:55 +08:00
HorizontalAlignment="Center" Foreground="{DynamicResource SeewoTimerWindowDigitForeground}" Margin="0,0,0,8"/>
2025-10-04 16:21:14 +08:00
<!-- 下方-按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit5MinusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit5Minus_Click" Cursor="Hand">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="-" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
</StackPanel>
</Grid>
2025-10-04 16:14:56 +08:00
2025-10-04 16:21:14 +08:00
<!-- 第6位数字(秒个位) -->
<Grid>
<StackPanel Orientation="Vertical" HorizontalAlignment="Center">
<!-- 上方+按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit6PlusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit6Plus_Click" Cursor="Hand" Margin="0,0,0,8">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="+" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
<!-- 数字显示 -->
<TextBlock x:Name="Digit6Display" Text="0" FontSize="64" FontWeight="Bold"
2025-10-04 21:55:55 +08:00
HorizontalAlignment="Center" Foreground="{DynamicResource SeewoTimerWindowDigitForeground}" Margin="0,0,0,8"/>
2025-10-04 16:21:14 +08:00
<!-- 下方-按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="Digit6MinusBtn" Width="40" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Digit6Minus_Click" Cursor="Hand">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="15">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 21:55:55 +08:00
<TextBlock Text="-" FontSize="14" FontWeight="Bold" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</Button>
</StackPanel>
</Grid>
2025-10-04 16:14:56 +08:00
</StackPanel>
2025-10-04 16:21:14 +08:00
<!-- 秒标签 -->
<TextBlock Text="秒" FontSize="16" HorizontalAlignment="Center"
2025-10-04 21:55:55 +08:00
Foreground="{DynamicResource SeewoTimerWindowButtonForeground}" Margin="0,112,0,-12"/>
2025-10-04 16:14:56 +08:00
</Grid>
</StackPanel>
2025-10-04 16:21:14 +08:00
</Grid>
2025-10-04 16:14:56 +08:00
2025-10-04 16:21:14 +08:00
<!-- 底部控制按钮区域 -->
<Grid HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="0,0,0,20">
2025-10-04 16:14:56 +08:00
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
2025-10-04 16:21:14 +08:00
<!-- 全屏按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="FullscreenBtn" Width="80" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:21:14 +08:00
BorderThickness="0" Click="Fullscreen_Click" Cursor="Hand" Margin="0,0,30,0">
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="8">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
2025-10-04 21:55:55 +08:00
<TextBlock Text="⛶" FontSize="16" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}" Margin="0,0,5,0"/>
<TextBlock Text="全屏" FontSize="12" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</StackPanel>
</Button>
2025-10-04 16:14:56 +08:00
2025-10-04 16:21:14 +08:00
<!-- 开始/暂停按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="StartPauseBtn" Width="80" Height="80" Background="{DynamicResource SeewoTimerWindowPrimaryButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="StartPause_Click" Cursor="Hand" Margin="0,0,30,0">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="40">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
2025-10-04 22:30:40 +08:00
<Path x:Name="StartPauseIcon" Data="M6.5 4.00004V20C6.49995 20.178 6.54737 20.3527 6.63738 20.5062C6.72739 20.6597 6.85672 20.7864 7.01202 20.8732C7.16733 20.96 7.34299 21.0038 7.52088 21.0001C7.69878 20.9964 7.87245 20.9453 8.024 20.852L21.024 12.852C21.1696 12.7626 21.2898 12.6373 21.3733 12.4881C21.4567 12.339 21.5005 12.1709 21.5005 12C21.5005 11.8291 21.4567 11.6611 21.3733 11.512C21.2898 11.3628 21.1696 11.2375 21.024 11.148L8.024 3.14804C7.87245 3.0548 7.69878 3.00369 7.52088 2.99997C7.34299 2.99626 7.16733 3.04007 7.01202 3.1269C6.85672 3.21372 6.72739 3.34042 6.63738 3.4939C6.54737 3.64739 6.49995 3.82211 6.5 4.00004Z"
Fill="{DynamicResource SeewoTimerWindowPrimaryButtonForeground}"
2025-10-04 22:31:42 +08:00
Width="24" Height="24"
HorizontalAlignment="Center" VerticalAlignment="Center" Stretch="Fill"/>
2025-10-04 16:21:14 +08:00
</Button>
2025-10-04 16:14:56 +08:00
2025-10-04 16:21:14 +08:00
<!-- 重置按钮 -->
2025-10-04 21:55:55 +08:00
<Button x:Name="ResetBtn" Width="80" Height="40" Background="{DynamicResource SeewoTimerWindowButtonBackground}"
2025-10-04 16:14:56 +08:00
BorderThickness="0" Click="Reset_Click" Cursor="Hand">
2025-10-04 16:21:14 +08:00
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="{TemplateBinding Background}" CornerRadius="8">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
2025-10-04 21:55:55 +08:00
<TextBlock Text="↻" FontSize="16" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}" Margin="0,0,5,0"/>
<TextBlock Text="重置" FontSize="12" Foreground="{DynamicResource SeewoTimerWindowButtonForeground}"/>
2025-10-04 16:21:14 +08:00
</StackPanel>
</Button>
2025-10-04 16:14:56 +08:00
</StackPanel>
2025-10-04 16:21:14 +08:00
</Grid>
</Grid>
</Viewbox>
2025-10-04 16:14:56 +08:00
</Grid>
</Grid>
</Border>
</Window>