2022-12-02 23:06:31 +08:00
|
|
|
<ResourceDictionary
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" >
|
|
|
|
|
|
2022-12-05 22:48:00 +08:00
|
|
|
<ResourceDictionary.MergedDictionaries>
|
|
|
|
|
<ResourceDictionary Source="Shared.xaml" />
|
|
|
|
|
</ResourceDictionary.MergedDictionaries>
|
2022-12-02 23:06:31 +08:00
|
|
|
|
2022-12-05 22:48:00 +08:00
|
|
|
<!-- SimpleStyles: GroupBox -->
|
|
|
|
|
<Style TargetType="GroupBox">
|
|
|
|
|
<Setter Property="FontFamily" Value="SegoeUI"/>
|
|
|
|
|
<Setter Property="FontSize" Value="12"/>
|
|
|
|
|
<Setter Property="Foreground" Value="#4C4C4C"/>
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="GroupBox">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Border
|
2022-12-02 23:06:31 +08:00
|
|
|
Grid.Row="0"
|
|
|
|
|
Background="{StaticResource LightBrush}"
|
|
|
|
|
BorderBrush="{StaticResource NormalBorderBrush}"
|
|
|
|
|
BorderThickness="1"
|
|
|
|
|
CornerRadius="2,2,0,0" >
|
2022-12-05 22:48:00 +08:00
|
|
|
<ContentPresenter
|
2022-12-02 23:06:31 +08:00
|
|
|
Margin="4"
|
|
|
|
|
ContentSource="Header"
|
|
|
|
|
RecognizesAccessKey="True" />
|
2022-12-05 22:48:00 +08:00
|
|
|
</Border>
|
|
|
|
|
<Border
|
2022-12-02 23:06:31 +08:00
|
|
|
Grid.Row="1"
|
|
|
|
|
Background="{TemplateBinding Background}"
|
|
|
|
|
BorderBrush="{StaticResource SolidBorderBrush}"
|
|
|
|
|
BorderThickness="1,0,1,1"
|
|
|
|
|
CornerRadius="0,0,2,2" >
|
2022-12-05 22:48:00 +08:00
|
|
|
<ContentPresenter
|
2022-12-02 23:06:31 +08:00
|
|
|
Margin="4" />
|
2022-12-05 22:48:00 +08:00
|
|
|
</Border>
|
|
|
|
|
</Grid>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
2022-12-02 23:06:31 +08:00
|
|
|
</ResourceDictionary>
|