GroupBox.xaml 1012 B

12345678910111213141516171819
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:hc="clr-namespace:HandyControl.Controls">
  2. <Style BasedOn="{StaticResource GroupBoxBaseStyle}" TargetType="GroupBox" />
  3. <Style x:Key="GroupBox.Small" BasedOn="{StaticResource GroupBoxBaseStyle}" TargetType="GroupBox">
  4. <Setter Property="hc:TitleElement.MinHeight" Value="20" />
  5. <Setter Property="hc:TitleElement.MinWidth" Value="20" />
  6. </Style>
  7. <Style x:Key="GroupBoxOriginal" BasedOn="{StaticResource GroupBoxOriginalBaseStyle}" TargetType="GroupBox" />
  8. <Style x:Key="GroupBoxTab" BasedOn="{StaticResource GroupBoxTabBaseStyle}" TargetType="GroupBox" />
  9. <Style x:Key="GroupBoxTab.Small" BasedOn="{StaticResource GroupBoxTab}" TargetType="GroupBox">
  10. <Setter Property="hc:TitleElement.MinHeight" Value="20" />
  11. <Setter Property="hc:TitleElement.MinWidth" Value="20" />
  12. </Style>
  13. </ResourceDictionary>