ComboBoxStyle.xaml 625 B

123456789101112131415
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style TargetType="ComboBox">
  4. <Setter Property="FontFamily" Value="Arial,SimSun" />
  5. <Setter Property="Background" Value="#FFDCF7F6"></Setter>
  6. </Style>
  7. <Style TargetType="ComboBox" x:Key="EventComboBox" BasedOn="{StaticResource {x:Type ComboBox}}">
  8. <Setter Property="Height" Value="28" />
  9. <Setter Property="Width" Value="1000" />
  10. <Setter Property="FontSize" Value="14" />
  11. </Style>
  12. </ResourceDictionary>