App.xaml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Application x:Class="SingleClusterToolUI.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:converters="clr-namespace:MECF.Framework.UI.Core.Converters;assembly=MECF.Framework.UI.Core"
  4. xmlns:converter="clr-namespace:Aitex.Sorter.UI.Converter;assembly=Aitex.Sorter.UI"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  6. <Application.Resources>
  7. <ResourceDictionary>
  8. <!--<converter:AiIndexDisplayConvert x:Key="AiIndexDisplayConvert" />
  9. <converter:AoIndexDisplayConvert x:Key="AoIndexDisplayConvert" />-->
  10. <converters:BoolSensorConverter x:Key="BoolSensorConverter"></converters:BoolSensorConverter>
  11. <ResourceDictionary.MergedDictionaries>
  12. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/WindowStyle.xaml" />
  13. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/ButtonStyle.xaml" />
  14. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/TextBlockStyle.xaml" />
  15. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/TabControlStyle.xaml" />
  16. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/LabelStyle.xaml" />
  17. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/ComboBoxStyle.xaml" />
  18. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/PasswordBoxStyle.xaml" />
  19. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/GroupBoxStyle.xaml" />
  20. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/TextBoxStyle.xaml" />
  21. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/TreeViewStyle.xaml" />
  22. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/ListBoxStyle.xaml" />
  23. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/ListViewStyle.xaml" />
  24. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/CommonStyle.xaml" />
  25. <!--<ResourceDictionary Source="/应用名称;component/Theme/Style.xaml"/>-->
  26. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Resources/Language/StringResources.zh-CN.xaml" />
  27. <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Resources/Language/StringResources.en-US.xaml" />
  28. <!--<ResourceDictionary Source="Resources/StringResources.zh-CN.xaml" />
  29. <ResourceDictionary Source="Resources/StringResources.en-US.xaml" />-->
  30. <ResourceDictionary Source="pack://application:,,,/Aitex.Sorter.UI;component/Resources/Generic.xaml" />
  31. <ResourceDictionary Source="pack://application:,,,/Aitex.Sorter.UI;component/Controls/HeaderPanelResource.xaml"/>
  32. <ResourceDictionary Source="pack://application:,,,/Aitex.Sorter.UI;component/Resources/StringResources.zh-CN.xaml" />
  33. <ResourceDictionary Source="pack://application:,,,/Aitex.Sorter.UI;component/Resources/StringResources.en-US.xaml" />
  34. </ResourceDictionary.MergedDictionaries>
  35. </ResourceDictionary>
  36. </Application.Resources>
  37. </Application>