ComboBox.xaml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:hc="clr-namespace:HandyControl.Controls">
  4. <Style BasedOn="{StaticResource ComboBoxBaseStyle}" TargetType="ComboBox"/>
  5. <Style x:Key="ComboBoxItem.Small" BasedOn="{StaticResource ComboBoxItemBaseStyle}" TargetType="ComboBoxItem">
  6. <Setter Property="Padding" Value="6,0" />
  7. <Setter Property="MinHeight" Value="20" />
  8. </Style>
  9. <Style x:Key="ComboBox.Small" BasedOn="{StaticResource ComboBoxBaseStyle}" TargetType="ComboBox">
  10. <Setter Property="ItemContainerStyle" Value="{StaticResource ComboBoxItem.Small}" />
  11. <Setter Property="MinHeight" Value="20"/>
  12. <Setter Property="Padding" Value="6,0"/>
  13. </Style>
  14. <Style x:Key="ComboBoxExtend" BasedOn="{StaticResource ComboBoxExtendBaseStyle}" TargetType="ComboBox"/>
  15. <Style x:Key="ComboBoxExtend.Small" BasedOn="{StaticResource ComboBoxExtend}" TargetType="ComboBox">
  16. <Setter Property="ItemContainerStyle" Value="{StaticResource ComboBoxItem.Small}" />
  17. <Setter Property="hc:InfoElement.MinContentHeight" Value="20"/>
  18. <Setter Property="hc:InfoElement.ContentHeight" Value="20"/>
  19. <Setter Property="hc:TitleElement.MarginOnTheLeft" Value="0,3,6,0"/>
  20. <Setter Property="hc:TitleElement.MarginOnTheTop" Value="6,0,0,1" />
  21. <Setter Property="Padding" Value="6,0"/>
  22. <Setter Property="MinHeight" Value="20"/>
  23. </Style>
  24. <Style BasedOn="{StaticResource ComboBoxPlusBaseStyle}" TargetType="hc:ComboBox"/>
  25. <Style x:Key="ComboBoxPlus.Small" BasedOn="{StaticResource ComboBoxPlusBaseStyle}" TargetType="hc:ComboBox">
  26. <Setter Property="ItemContainerStyle" Value="{StaticResource ComboBoxItem.Small}" />
  27. <Setter Property="hc:InfoElement.MinContentHeight" Value="20"/>
  28. <Setter Property="hc:InfoElement.ContentHeight" Value="20"/>
  29. <Setter Property="hc:TitleElement.MarginOnTheLeft" Value="0,3,6,0"/>
  30. <Setter Property="hc:TitleElement.MarginOnTheTop" Value="6,0,0,1" />
  31. <Setter Property="Padding" Value="6,0" />
  32. <Setter Property="MinHeight" Value="20"/>
  33. </Style>
  34. </ResourceDictionary>