DefaultStyles.xaml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <ResourceDictionary
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="using:YJMPD_UWP.Themes">
  5. <Style TargetType="TextBlock">
  6. <Setter Property="FontSize" Value="14" />
  7. </Style>
  8. <Style TargetType="StackPanel" x:Key="Base">
  9. <Setter Property="Margin" Value="10" />
  10. </Style>
  11. <Style TargetType="TextBlock" x:Key="Header">
  12. <Setter Property="FontSize" Value="20" />
  13. <Setter Property="FontWeight" Value="Bold" />
  14. <Setter Property="Margin" Value="0,0,0,3" />
  15. </Style>
  16. <Style TargetType="TextBlock" x:Key="Subtext">
  17. <Setter Property="Foreground" Value="Gray" />
  18. <Setter Property="FontSize" Value="14" />
  19. </Style>
  20. <Style TargetType="Button" x:Key="Green">
  21. <Setter Property="Background" Value="DarkGreen" />
  22. <Setter Property="Foreground" Value="White" />
  23. <Setter Property="HorizontalAlignment" Value="Stretch" />
  24. </Style>
  25. <Style TargetType="Button" x:Key="Red">
  26. <Setter Property="Background" Value="DarkRed" />
  27. <Setter Property="Foreground" Value="White" />
  28. <Setter Property="HorizontalAlignment" Value="Stretch" />
  29. </Style>
  30. </ResourceDictionary>