<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Tango.FSE.Common.Controls">
<Style TargetType="{x:Type local:FSEGroupBox}">
<Setter Property="HeaderBackground" Value="{StaticResource FSE_PrimaryBackgroundLightBrush}"></Setter>
<Setter Property="HeaderBorderBrush" Value="{StaticResource FSE_BorderBrush}"></Setter>
<Setter Property="HeaderBorderThickness" Value="0"></Setter>
<Setter Property="HeaderPadding" Value="5 8"></Setter>
<Setter Property="HeaderCornerRadius" Value="0"></Setter>
<Setter Property="HeaderForeground" Value="{StaticResource FSE_PrimaryForegroundBrush}"></Setter>
<Setter Property="HeaderFontSize" Value="{StaticResource FSE_DefaultFontSize}"></Setter>
<Setter Property="Background" Value="{StaticResource FSE_PrimaryBackgroundMidBrush}"></Setter>
<Setter Property="Padding" Value="10"></Setter>
<Setter Property="BorderThickness" Value="0"></Setter>
<Setter Property="BorderBrush" Value="{x:Null}"></Setter>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:FSEGroupBox}">
<Border>
<DockPanel>
<Border
DockPanel.Dock="Top"
CornerRadius="{TemplateBinding HeaderCornerRadius}"
Padding="{TemplateBinding HeaderPadding}"
Background="{TemplateBinding HeaderBackground}"
BorderThickness="{TemplateBinding HeaderBorderThickness}"
BorderBrush="{TemplateBinding HeaderBorderBrush}"
TextElement.Foreground="{TemplateBinding HeaderForeground}"
TextElement.FontSize="{TemplateBinding HeaderFontSize}">
<ContentPresenter Content="{TemplateBinding Header}" />
</Border>
<Border Background="{TemplateBinding Background}"
CornerRadius="{TemplateBinding CornerRadius}"
Padding="{TemplateBinding Padding}"
BorderThickness="{TemplateBinding BorderThickness}"
BorderBrush="{TemplateBinding BorderBrush}">
<ContentPresenter Content="{TemplateBinding Content}" />
</Border>
</DockPanel>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>