1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <Application x:Class="SingleClusterToolUI.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:converters="clr-namespace:MECF.Framework.UI.Core.Converters;assembly=MECF.Framework.UI.Core"
- xmlns:converter="clr-namespace:Aitex.Sorter.UI.Converter;assembly=Aitex.Sorter.UI"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <Application.Resources>
- <ResourceDictionary>
- <!--<converter:AiIndexDisplayConvert x:Key="AiIndexDisplayConvert" />
- <converter:AoIndexDisplayConvert x:Key="AoIndexDisplayConvert" />-->
- <converters:BoolSensorConverter x:Key="BoolSensorConverter"></converters:BoolSensorConverter>
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/WindowStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/ButtonStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/TextBlockStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/TabControlStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/LabelStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/ComboBoxStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/PasswordBoxStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/GroupBoxStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/TextBoxStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/TreeViewStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/ListBoxStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/ListViewStyle.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/CadetBlue/CommonStyle.xaml" />
- <!--<ResourceDictionary Source="/应用名称;component/Theme/Style.xaml"/>-->
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Resources/Language/StringResources.zh-CN.xaml" />
- <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Resources/Language/StringResources.en-US.xaml" />
- <!--<ResourceDictionary Source="Resources/StringResources.zh-CN.xaml" />
- <ResourceDictionary Source="Resources/StringResources.en-US.xaml" />-->
- <ResourceDictionary Source="pack://application:,,,/Aitex.Sorter.UI;component/Resources/Generic.xaml" />
- <ResourceDictionary Source="pack://application:,,,/Aitex.Sorter.UI;component/Controls/HeaderPanelResource.xaml"/>
- <ResourceDictionary Source="pack://application:,,,/Aitex.Sorter.UI;component/Resources/StringResources.zh-CN.xaml" />
- <ResourceDictionary Source="pack://application:,,,/Aitex.Sorter.UI;component/Resources/StringResources.en-US.xaml" />
-
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </Application.Resources>
- </Application>
|