12345678910111213141516171819 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <Style x:Key="BlockHeader" TargetType="TextBlock">
- <Setter Property="FontSize" Value="28"/>
- <Setter Property="FontFamily" Value="Franklin Gothic Demi"/>
- <Setter Property="HorizontalAlignment" Value="Center"/>
- <Setter Property="VerticalAlignment" Value="Center"/>
- </Style>
- <Style x:Key="BackButton" TargetType="Button">
- <Setter Property="Background" Value="#FFFF9D1A"/>
- <Setter Property="Width" Value="200"/>
- <Setter Property="Height" Value="30"/>
- <Setter Property="Foreground" Value="White"/>
- <Setter Property="FontSize" Value="20"/>
- <Setter Property="FontFamily" Value="Franklin Gothic Medium"/>
- </Style>
- </ResourceDictionary>
|