52 lines
2.4 KiB
XML
52 lines
2.4 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Style x:Key="BaseGroupBox" TargetType="{x:Type GroupBox}">
|
|
<Setter Property="BorderThickness" Value="1" />
|
|
<Setter Property="Padding" Value="3" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ObjectEditGroupBox"
|
|
BasedOn="{StaticResource BaseGroupBox}"
|
|
TargetType="{x:Type GroupBox}">
|
|
<!-- <Setter Property="BorderBrush" Value="#D5DFE5" />-->
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type GroupBox}">
|
|
<Grid SnapsToDevicePixels="true">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Border
|
|
x:Name="Header"
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
MinHeight="20"
|
|
Padding="3,0,3,0"
|
|
TextElement.FontFamily="Microsoft Sans Serif"
|
|
TextElement.FontSize="16"
|
|
TextElement.Foreground="{StaticResource TabItemHotTextBrush}">
|
|
<ContentPresenter
|
|
ContentSource="Header"
|
|
RecognizesAccessKey="True"
|
|
SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
|
|
</Border>
|
|
<Border
|
|
Grid.Row="1"
|
|
BorderBrush="#FF86878F"
|
|
BorderThickness="0,0,0,1" />
|
|
<ContentPresenter
|
|
Grid.Row="2"
|
|
Grid.Column="0"
|
|
Margin="{TemplateBinding Padding}"
|
|
SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
|
|
</Grid>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</ResourceDictionary> |