App.xaml 2.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <Application x:Class="CyberX8_Simulator.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:CyberX8_Simulator">
  5. <Application.Resources>
  6. <ResourceDictionary>
  7. <ResourceDictionary.MergedDictionaries>
  8. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/WindowStyle.xaml" />
  9. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/ButtonStyle.xaml" />
  10. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/TextBlockStyle.xaml" />
  11. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/TabControlStyle.xaml" />
  12. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/LabelStyle.xaml" />
  13. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/ComboBoxStyle.xaml" />
  14. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/PasswordBoxStyle.xaml" />
  15. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/GroupBoxStyle.xaml" />
  16. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/TextBoxStyle.xaml" />
  17. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/TreeViewStyle.xaml" />
  18. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/ListBoxStyle.xaml" />
  19. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/ListViewStyle.xaml" />
  20. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CommonStyle.xaml" />
  21. <!--<ResourceDictionary Source="/应用名称;component/Theme/Style.xaml"/>-->
  22. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Resources/Language/StringResources.zh-CN.xaml" />
  23. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Resources/Language/StringResources.en-US.xaml" />
  24. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/StyleA.xaml" />
  25. </ResourceDictionary.MergedDictionaries>
  26. </ResourceDictionary>
  27. </Application.Resources>
  28. </Application>