DefaultStyles.xaml 786 B

123456789101112131415161718192021
  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="SymbolIcon" x:Key="InfoIcon">
  6. <Setter Property="Foreground" Value="Gray" />
  7. </Style>
  8. <Style TargetType="TextBlock" x:Key="InfoText">
  9. <Setter Property="Foreground" Value="Gray" />
  10. <Setter Property="FontSize" Value="16" />
  11. <Setter Property="Margin" Value="5,0,0,0" />
  12. </Style>
  13. <Style TargetType="TextBlock" x:Key="Header">
  14. <Setter Property="FontSize" Value="20" />
  15. <Setter Property="FontWeight" Value="Bold" />
  16. <Setter Property="Margin" Value="0,0,0,3" />
  17. </Style>
  18. </ResourceDictionary>