App.xaml 937 B

123456789101112131415161718
  1. <Application
  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:BellwetherBackend"
  5. StartupUri="MainWindow.xaml"
  6. x:Class="BellwetherBackend.App">
  7. <Application.Resources>
  8. <ResourceDictionary>
  9. <ResourceDictionary.MergedDictionaries>
  10. <ResourceDictionary Source="/FirstFloor.ModernUI;component/Assets/ModernUI.xaml" />
  11. <ResourceDictionary Source="/FirstFloor.ModernUI;component/Assets/ModernUI.Light.xaml" />
  12. <ResourceDictionary Source="ModernWindowResource.xaml" />
  13. <ResourceDictionary Source="/HistoryWallEditTool;component/Style.xaml" />
  14. <ResourceDictionary Source="MyDictionary.xaml" />
  15. </ResourceDictionary.MergedDictionaries>
  16. </ResourceDictionary>
  17. </Application.Resources>
  18. </Application>