App.xaml 1.3 KB

123456789101112131415161718192021
  1. <Application x:Class="GeekDesk.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:GeekDesk"
  5. StartupUri="MainWindow.xaml"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. d1p1:Ignorable="d"
  8. xmlns:d1p1="http://schemas.openxmlformats.org/markup-compatibility/2006">
  9. <Application.Resources>
  10. <ResourceDictionary>
  11. <ResourceDictionary.MergedDictionaries>
  12. <ResourceDictionary Source="/GeekDesk;component/Resource/Dictionary/Geometry.xaml"/>
  13. <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml"/>
  14. <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml"/>
  15. <ResourceDictionary Source="/GeekDesk;component/Resource/Dictionary/CommonStyle.xaml"/>
  16. <ResourceDictionary Source="pack://application:,,,/XamlFlair.WPF;component/DefaultAnimations.xaml"/>
  17. <ResourceDictionary Source="/GeekDesk;component/Resource/Dictionary/XamlFlairSettings.xaml"/>
  18. </ResourceDictionary.MergedDictionaries>
  19. </ResourceDictionary>
  20. </Application.Resources>
  21. </Application>