更新122

This commit is contained in:
GukSang.Jin
2026-05-20 16:39:42 +08:00
parent 7c7339d72c
commit 4030c18dc8
5 changed files with 117 additions and 77 deletions

View File

@@ -13,14 +13,14 @@
<Setter Property="MinWidth" Value="72"/>
<Setter Property="MinHeight" Value="58"/>
<Setter Property="Margin" Value="5"/>
<Setter Property="FontSize" Value="22"/>
<Setter Property="FontSize" Value="{StaticResource KeypadButtonFontSize}"/>
<Setter Property="FontWeight" Value="SemiBold"/>
<Setter Property="Background" Value="White"/>
<Setter Property="BorderBrush" Value="#C7D2DE"/>
<Setter Property="BorderThickness" Value="1"/>
</Style>
<Style TargetType="Button" x:Key="CommandButton" BasedOn="{StaticResource KeyButton}">
<Setter Property="FontSize" Value="18"/>
<Setter Property="FontSize" Value="{StaticResource KeypadCommandFontSize}"/>
<Setter Property="Background" Value="#E9F1F8"/>
</Style>
</Window.Resources>
@@ -36,7 +36,7 @@
Grid.Row="0"
Height="58"
Padding="12,0"
FontSize="28"
FontSize="{StaticResource KeypadValueFontSize}"
FontWeight="SemiBold"
HorizontalContentAlignment="Right"
VerticalContentAlignment="Center"
@@ -74,7 +74,7 @@
<TextBlock Grid.Row="2"
Text="点击数字输入,确定后写入当前输入框"
Foreground="#526273"
FontSize="13"
FontSize="{StaticResource SmallTextFontSize}"
HorizontalAlignment="Center"/>
</Grid>
</Window>