Window.xaml 820 B

1234567891011121314
  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. <Style x:Key="WindowStyle" TargetType="{x:Type Window}">
  8. <Setter Property="FontFamily" Value="{DynamicResource DefaultFontFamily}" />
  9. <Setter Property="FontSize" Value="{DynamicResource DefaultFontSize}" />
  10. <Setter Property="Foreground" Value="{DynamicResource DefaultForeground}" />
  11. <Setter Property="Background" Value="{DynamicResource DefaultBackground}" />
  12. </Style>
  13. </ResourceDictionary>