| 12345678910111213141516171819202122232425262728293031323334353637 | <Application x:Class="VirgoSimulator.App"             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"             xmlns:local="clr-namespace:VirgoSimulator">    <Application.Resources>        <ResourceDictionary>            <ResourceDictionary.MergedDictionaries>                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/WindowStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/ButtonStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/TextBlockStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/TabControlStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/LabelStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/ComboBoxStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/PasswordBoxStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/GroupBoxStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/TextBoxStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/TreeViewStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/ListBoxStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/ListViewStyle.xaml" />                <ResourceDictionary Source="/MECF.Framework.UI.Core;component/Style/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="/MECF.Framework.UI.Core;component/Style/StyleA.xaml" />                <!--<ResourceDictionary Source="Resources/StringResources.zh-CN.xaml" />                <ResourceDictionary Source="Resources/StringResources.en-US.xaml" />                                <ResourceDictionary Source="pack://application:,,,/AitexSorterUI;component/Controls/HeaderPanelResource.xaml"/>-->            </ResourceDictionary.MergedDictionaries>        </ResourceDictionary>    </Application.Resources></Application>
 |