更新122
This commit is contained in:
@@ -16,40 +16,47 @@
|
||||
|
||||
<Style TargetType="GroupBox">
|
||||
<Setter Property="Margin" Value="0,0,0,14"/>
|
||||
<Setter Property="Padding" Value="14"/>
|
||||
<Setter Property="Padding" Value="16"/>
|
||||
<Setter Property="Background" Value="White"/>
|
||||
<Setter Property="BorderBrush" Value="{StaticResource PanelBorderBrush}"/>
|
||||
<Setter Property="BorderThickness" Value="1"/>
|
||||
<Setter Property="FontSize" Value="16"/>
|
||||
<Setter Property="FontSize" Value="{StaticResource BaseFontSize}"/>
|
||||
<Setter Property="FontWeight" Value="SemiBold"/>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="TextBlock" x:Key="ParamLabel">
|
||||
<Setter Property="Width" Value="220"/>
|
||||
<Setter Property="Width" Value="230"/>
|
||||
<Setter Property="VerticalAlignment" Value="Center"/>
|
||||
<Setter Property="Foreground" Value="#526273"/>
|
||||
<Setter Property="FontSize" Value="15"/>
|
||||
<Setter Property="FontSize" Value="{StaticResource BaseFontSize}"/>
|
||||
<Setter Property="FontWeight" Value="Normal"/>
|
||||
<Setter Property="TextWrapping" Value="Wrap"/>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="TextBox">
|
||||
<Setter Property="Width" Value="180"/>
|
||||
<Setter Property="Height" Value="40"/>
|
||||
<Setter Property="Height" Value="42"/>
|
||||
<Setter Property="Padding" Value="8,2"/>
|
||||
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
||||
<Setter Property="FontSize" Value="15"/>
|
||||
<Setter Property="FontSize" Value="{StaticResource BaseFontSize}"/>
|
||||
<Setter Property="helpers:NumericInput.IsEnabled" Value="True"/>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Button">
|
||||
<Setter Property="FontSize" Value="{StaticResource ButtonFontSize}"/>
|
||||
<Setter Property="MinHeight" Value="44"/>
|
||||
<Setter Property="Padding" Value="16,0"/>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="StackPanel" x:Key="ParamRow">
|
||||
<Setter Property="Orientation" Value="Horizontal"/>
|
||||
<Setter Property="Margin" Value="0,6,32,6"/>
|
||||
<Setter Property="Margin" Value="0,7,32,7"/>
|
||||
<Setter Property="VerticalAlignment" Value="Center"/>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="TextBlock" x:Key="StandardNote">
|
||||
<Setter Property="Foreground" Value="#6A7888"/>
|
||||
<Setter Property="FontSize" Value="13"/>
|
||||
<Setter Property="FontSize" Value="{StaticResource SmallTextFontSize}"/>
|
||||
<Setter Property="FontWeight" Value="Normal"/>
|
||||
<Setter Property="TextWrapping" Value="Wrap"/>
|
||||
<Setter Property="Margin" Value="0,10,0,0"/>
|
||||
@@ -66,7 +73,7 @@
|
||||
<Border Background="#0F3D68" CornerRadius="6" Padding="14,10" Margin="0,0,0,14">
|
||||
<TextBlock Text="参数设置"
|
||||
Foreground="White"
|
||||
FontSize="22"
|
||||
FontSize="{StaticResource TitleFontSize}"
|
||||
FontWeight="Bold"/>
|
||||
</Border>
|
||||
|
||||
@@ -184,8 +191,8 @@
|
||||
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,16,0,0">
|
||||
<Button x:Name="SaveButton"
|
||||
Content="保存"
|
||||
Width="110"
|
||||
Height="40"
|
||||
Width="116"
|
||||
Height="44"
|
||||
Margin="6"
|
||||
Click="SaveButton_Click"
|
||||
Background="{StaticResource PrimaryBrush}"
|
||||
@@ -194,8 +201,8 @@
|
||||
FontWeight="SemiBold"/>
|
||||
<Button x:Name="CancelButton"
|
||||
Content="取消"
|
||||
Width="110"
|
||||
Height="40"
|
||||
Width="116"
|
||||
Height="44"
|
||||
Margin="6"
|
||||
Click="CancelButton_Click"
|
||||
Background="#687789"
|
||||
|
||||
Reference in New Issue
Block a user