App.xaml 1.4 KB

12345678910111213141516171819
  1. <Application x:Class="ConfigureWindow.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:ConfigureWindow" xmlns:properties="clr-namespace:ConfigureWindow.Properties"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <ResourceDictionary>
  8. <ResourceDictionary.MergedDictionaries>
  9. <ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Light.xaml" />
  10. <ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
  11. <ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.Indigo.xaml" />
  12. <ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Green.xaml" />
  13. </ResourceDictionary.MergedDictionaries>
  14. <Style x:Key="WinAll" TargetType="{x:Type Window}">
  15. <Setter Property="FontFamily" Value="/ConfigureWindow;component/fonts/#Source Han Sans SC Normal" />
  16. </Style>
  17. </ResourceDictionary>
  18. </Application.Resources>
  19. </Application>