You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
3.1 KiB
57 lines
3.1 KiB
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="Shared.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
<!--默认GroupBox样式-->
|
|
<Style TargetType="{x:Type GroupBox}">
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="GroupBox">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Border Grid.Row="0" BorderThickness="1" CornerRadius="2,2,0,0">
|
|
<Border.BorderBrush>
|
|
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
|
<LinearGradientBrush.GradientStops>
|
|
<GradientStopCollection>
|
|
<GradientStop Color="#FFCCCCCC" Offset="0.0" />
|
|
<GradientStop Color="#FF444444" Offset="1.0" />
|
|
</GradientStopCollection>
|
|
</LinearGradientBrush.GradientStops>
|
|
</LinearGradientBrush>
|
|
</Border.BorderBrush>
|
|
|
|
<!--<Border.Background>
|
|
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
|
<LinearGradientBrush.GradientStops>
|
|
<GradientStopCollection>
|
|
<GradientStop Color="White" Offset="0.0" />
|
|
<GradientStop Color="PaleGoldenrod" Offset="1.0" />
|
|
<GradientStop Color="{DynamicResource ControlLightColor}" Offset="0.0" />
|
|
<GradientStop Color="{DynamicResource ControlMediumColor}" Offset="1.0" />
|
|
</GradientStopCollection>
|
|
</LinearGradientBrush.GradientStops>
|
|
</LinearGradientBrush>
|
|
</Border.Background>-->
|
|
|
|
<ContentPresenter Margin="0" ContentSource="Header" RecognizesAccessKey="True" />
|
|
</Border>
|
|
|
|
<Border Grid.Row="1" BorderThickness="1,0,1,1" CornerRadius="0,0,2,2" Background="{StaticResource BorderBackground}">
|
|
<Border.BorderBrush>
|
|
<SolidColorBrush Color="#FF888888" />
|
|
</Border.BorderBrush>
|
|
<ContentPresenter Margin="1" />
|
|
</Border>
|
|
</Grid>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</ResourceDictionary>
|