BaseStyle.xaml 801 B

12345678910111213141516
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2. <ResourceDictionary.MergedDictionaries>
  3. <ResourceDictionary Source="Colors.xaml" />
  4. <ResourceDictionary Source="Fonts.xaml" />
  5. <ResourceDictionary Source="Sizes.xaml" />
  6. </ResourceDictionary.MergedDictionaries>
  7. <!-- 基样式 -->
  8. <Style
  9. x:Key="BaseStyle"
  10. BasedOn="{x:Null}"
  11. TargetType="{x:Type Control}">
  12. <Setter Property="FontFamily" Value="{DynamicResource DefaultFontFamily}" />
  13. <Setter Property="FontSize" Value="{DynamicResource DefaultFontSize}" />
  14. <Setter Property="Foreground" Value="{DynamicResource DefaultForeground}" />
  15. </Style>
  16. </ResourceDictionary>