Dictionary1.xaml 890 B

12345678910111213141516171819
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style x:Key="BlockHeader" TargetType="TextBlock">
  4. <Setter Property="FontSize" Value="28"/>
  5. <Setter Property="FontFamily" Value="Franklin Gothic Demi"/>
  6. <Setter Property="HorizontalAlignment" Value="Center"/>
  7. <Setter Property="VerticalAlignment" Value="Center"/>
  8. </Style>
  9. <Style x:Key="BackButton" TargetType="Button">
  10. <Setter Property="Background" Value="#FFFF9D1A"/>
  11. <Setter Property="Width" Value="200"/>
  12. <Setter Property="Height" Value="30"/>
  13. <Setter Property="Foreground" Value="White"/>
  14. <Setter Property="FontSize" Value="20"/>
  15. <Setter Property="FontFamily" Value="Franklin Gothic Medium"/>
  16. </Style>
  17. </ResourceDictionary>