DefaultStyles.xaml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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="BaseStackPanel">
  10. <Setter Property="Margin" Value="10" />
  11. </Style>
  12. <Style TargetType="RelativePanel" x:Key="BaseRelativePanel">
  13. <Setter Property="Margin" Value="10" />
  14. </Style>
  15. <Style TargetType="Grid" x:Key="BaseGrid">
  16. <Setter Property="Margin" Value="10" />
  17. </Style>
  18. <Style TargetType="TextBlock" x:Key="Header">
  19. <Setter Property="FontSize" Value="20" />
  20. <Setter Property="FontWeight" Value="Bold" />
  21. <Setter Property="Margin" Value="0,0,0,3" />
  22. </Style>
  23. <Style TargetType="TextBlock" x:Key="Subtext">
  24. <Setter Property="Foreground" Value="Gray" />
  25. <Setter Property="FontSize" Value="14" />
  26. </Style>
  27. <Style TargetType="TextBlock" x:Key="Icon">
  28. <Setter Property="FontFamily" Value="Segoe MDL2 Assets" />
  29. <Setter Property="FontSize" Value="14" />
  30. </Style>
  31. <Style TargetType="Button" x:Key="Green">
  32. <Setter Property="Background" Value="DarkGreen" />
  33. <Setter Property="Foreground" Value="White" />
  34. <Setter Property="HorizontalAlignment" Value="Stretch" />
  35. </Style>
  36. <Style TargetType="Button" x:Key="Red">
  37. <Setter Property="Background" Value="DarkRed" />
  38. <Setter Property="Foreground" Value="White" />
  39. <Setter Property="HorizontalAlignment" Value="Stretch" />
  40. </Style>
  41. </ResourceDictionary>