Generic.xaml 1.2 KB

12345678910111213141516171819202122232425262728
  1. <ResourceDictionary
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:ZUI="clr-namespace:CustomUI">
  5. <Style TargetType="{x:Type ZUI:Heading}">
  6. <Setter Property="Foreground" Value="Black" />
  7. <Style.Triggers>
  8. <Trigger Property="HeaderType" Value="H1">
  9. <Setter Property="FontSize" Value="22" />
  10. </Trigger>
  11. <Trigger Property="HeaderType" Value="H2">
  12. <Setter Property="FontSize" Value="22" />
  13. </Trigger>
  14. <Trigger Property="HeaderType" Value="H3">
  15. <Setter Property="FontSize" Value="22" />
  16. </Trigger>
  17. <Trigger Property="HeaderType" Value="H4">
  18. <Setter Property="FontSize" Value="22" />
  19. </Trigger>
  20. <Trigger Property="HeaderType" Value="H5">
  21. <Setter Property="FontSize" Value="22" />
  22. </Trigger>
  23. <Trigger Property="HeaderType" Value="H6">
  24. <Setter Property="FontSize" Value="22" />
  25. </Trigger>
  26. </Style.Triggers>
  27. </Style>
  28. </ResourceDictionary>