App.xaml 629 B

12345678910111213
  1. <Application x:Class="Waaagh.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:Waaagh">
  5. <Application.Resources>
  6. <ResourceDictionary>
  7. <ResourceDictionary.MergedDictionaries>
  8. <ResourceDictionary Source="/WaaaghTheme.Resources;component/DarkTheme.xaml"/>
  9. </ResourceDictionary.MergedDictionaries>
  10. <SolidColorBrush x:Key="TestBrush" Color="#669999"/>
  11. </ResourceDictionary>
  12. </Application.Resources>
  13. </Application>