DefaultStyles.xaml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <Setter Property="TextWrapping" Value="WrapWholeWords" />
  8. </Style>
  9. <Style TargetType="StackPanel" x:Key="Base">
  10. <Setter Property="Margin" Value="10" />
  11. </Style>
  12. <Style TargetType="TextBlock" x:Key="Header">
  13. <Setter Property="FontSize" Value="20" />
  14. <Setter Property="FontWeight" Value="Bold" />
  15. <Setter Property="Margin" Value="0,0,0,3" />
  16. </Style>
  17. <Style TargetType="TextBlock" x:Key="Subtext">
  18. <Setter Property="Foreground" Value="Gray" />
  19. <Setter Property="FontSize" Value="14" />
  20. </Style>
  21. <Style TargetType="Button" x:Key="Green">
  22. <Setter Property="Background" Value="DarkGreen" />
  23. <Setter Property="Foreground" Value="White" />
  24. <Setter Property="HorizontalAlignment" Value="Stretch" />
  25. </Style>
  26. <Style TargetType="Button" x:Key="Red">
  27. <Setter Property="Background" Value="DarkRed" />
  28. <Setter Property="Foreground" Value="White" />
  29. <Setter Property="HorizontalAlignment" Value="Stretch" />
  30. </Style>
  31. </ResourceDictionary>