Expander.xaml 487 B

1234567891011
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style BasedOn="{StaticResource ExpanderBaseStyle}" TargetType="Expander" />
  4. <Style x:Key="Expander.Small" BasedOn="{StaticResource ExpanderBaseStyle}" TargetType="Expander">
  5. <Setter Property="MinHeight" Value="20" />
  6. <Setter Property="MinWidth" Value="20" />
  7. </Style>
  8. </ResourceDictionary>