TreeViewStyle.xaml 764 B

1234567891011121314151617
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style TargetType="TreeView">
  4. <Setter Property="FontFamily" Value="Arial,SimSun" />
  5. <Setter Property="Background" Value="#FFDCF7F6"></Setter>
  6. </Style>
  7. <Style TargetType="TreeView" x:Key="ConfigTreeView">
  8. <Setter Property="HorizontalAlignment" Value="Left" />
  9. <Setter Property="VerticalAlignment" Value="Top" />
  10. <Setter Property="Width" Value="288"/>
  11. <Setter Property="Height" Value="766" />
  12. <Setter Property="FontSize" Value="12" />
  13. <Setter Property="FontFamily" Value="Arial,SimSun" />
  14. </Style>
  15. </ResourceDictionary>