StyleTextBlock.xaml 833 B

123456789101112131415161718192021
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style TargetType="TextBlock">
  4. <Style.Setters>
  5. <Setter Property="FontSize" Value="14"/>
  6. <Setter Property="VerticalAlignment" Value="Center"/>
  7. </Style.Setters>
  8. </Style>
  9. <Style x:Key="Header" TargetType="TextBlock">
  10. <Style.Setters>
  11. <Setter Property="Foreground" Value="#498C51"/>
  12. <Setter Property="FontSize" Value="20"/>
  13. <Setter Property="FontWeight" Value="Bold"/>
  14. <Setter Property="HorizontalAlignment" Value="Center"/>
  15. <Setter Property="VerticalAlignment" Value="Center"/>
  16. </Style.Setters>
  17. </Style>
  18. </ResourceDictionary>