123456789101112131415161718192021 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <Style TargetType="TextBlock">
- <Style.Setters>
- <Setter Property="FontSize" Value="14"/>
- <Setter Property="VerticalAlignment" Value="Center"/>
- </Style.Setters>
- </Style>
-
- <Style x:Key="Header" TargetType="TextBlock">
- <Style.Setters>
- <Setter Property="Foreground" Value="#498C51"/>
- <Setter Property="FontSize" Value="20"/>
- <Setter Property="FontWeight" Value="Bold"/>
- <Setter Property="HorizontalAlignment" Value="Center"/>
- <Setter Property="VerticalAlignment" Value="Center"/>
- </Style.Setters>
- </Style>
-
-
- </ResourceDictionary>
|