App.xaml 695 B

12345678910111213
  1. <Application x:Class="TestViewer.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. StartupUri="MainWindow.xaml">
  5. <Application.Resources>
  6. <ResourceDictionary>
  7. <ResourceDictionary.MergedDictionaries>
  8. <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml"/>
  9. <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml"/>
  10. </ResourceDictionary.MergedDictionaries>
  11. </ResourceDictionary>
  12. </Application.Resources>
  13. </Application>