feat: 更新

This commit is contained in:
GukSang.Jin
2026-02-27 17:29:15 +08:00
parent fe0aee16ad
commit f2c975b51d
4 changed files with 18 additions and 16 deletions

View File

@@ -2102,9 +2102,9 @@
<Grid Visibility="{Binding IsCleaningDialogOpen, Converter={StaticResource BoolToVisibilityConverter}}"
Background="#CC000000">
<Border Background="White"
CornerRadius="30"
MaxWidth="600"
MaxHeight="400"
CornerRadius="25"
Width="520"
Height="480"
Padding="0"
HorizontalAlignment="Center"
VerticalAlignment="Center">
@@ -2121,10 +2121,10 @@
<!-- 标题栏 -->
<Border Grid.Row="0"
Background="#4CAF50"
CornerRadius="30,30,0,0"
Padding="40,25,40,25">
CornerRadius="25,25,0,0"
Padding="30,20,30,20">
<TextBlock Text="设备清理中"
FontSize="32"
FontSize="28"
FontWeight="Bold"
Foreground="White"
HorizontalAlignment="Center"
@@ -2133,12 +2133,12 @@
<!-- 内容区 -->
<Border Grid.Row="1"
Padding="40,40,40,40"
Padding="35,30,35,30"
Background="White"
CornerRadius="0,0,30,30">
CornerRadius="0,0,25,25">
<StackPanel VerticalAlignment="Center">
<!-- 动画图标 -->
<Viewbox Width="80" Height="80" Margin="0,0,0,30">
<Viewbox Width="70" Height="70" Margin="0,0,0,25">
<Canvas Width="100" Height="100">
<Ellipse Width="100" Height="100"
Stroke="#4CAF50"
@@ -2165,18 +2165,20 @@
<!-- 清理消息 -->
<TextBlock Text="{Binding CleaningMessage}"
FontSize="24"
FontSize="22"
FontWeight="SemiBold"
Foreground="#333"
HorizontalAlignment="Center"
TextAlignment="Center"
Margin="0,0,0,20"/>
TextWrapping="Wrap"
MaxWidth="420"
Margin="0,0,0,25"/>
<!-- 进度条 -->
<Border Background="#E0E0E0"
CornerRadius="10"
Height="20"
Margin="0,0,0,15">
Height="18"
Margin="0,0,0,12">
<Border Background="#4CAF50"
CornerRadius="10"
HorizontalAlignment="Left">
@@ -2193,9 +2195,10 @@
<TextBlock FontSize="20"
FontWeight="Bold"
Foreground="#4CAF50"
HorizontalAlignment="Center">
HorizontalAlignment="Center"
Margin="0,0,0,25">
<Run Text="{Binding CleaningProgress, Mode=OneWay}"/>
<Run Text="%"/>
<Run Text=" %"/>
</TextBlock>
<!-- 提示文字 -->
@@ -2203,7 +2206,6 @@
FontSize="16"
Foreground="#FF5722"
HorizontalAlignment="Center"
Margin="0,20,0,0"
FontWeight="SemiBold"/>
</StackPanel>
</Border>