0

私はこれらのプロジェクトで解決策を持っています:

1.クリニカ(種類は Windows アプリケーション),(MainWindow.xamlはこちら)

2. Ferhad.Wpf.Core (Type は Class Library) (3 つのファイルがあります: Resources.xamlOrangeResource.xamlBlueResource.xaml)

そのResources.xamlように見えます:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="pack://application:,,,/Ferhad.Wpf.Core;component/BlueResource.xaml"/>
    </ResourceDictionary.MergedDictionaries>
</ResourceDictionary>

今、からMainWindow.xaml.cs 私はクリアして追加OrangeReource.xamlしたいResources.xaml

どうすればそれを行うことができますか:これまでのところ、これを試しました:

string fileName = "pack://application:,,,/Ferhad.Wpf.Core;component/OrangeReSource.xaml";
if (System.IO.File.Exists(fileName))
{
    using (FileStream fs = new FileStream(fileName, FileMode.Open))
    {
        ResourceDictionary dic = (ResourceDictionary)XamlReader.Load(fs);

        string fileNameR = "pack://application:,,,/Ferhad.Wpf.Core;component/Resources.xaml";
        if (System.IO.File.Exists(fileNameR))
        {
            using (FileStream fsR = new FileStream(fileNameR, FileMode.Open))
            {
                ResourceDictionary dicR = (ResourceDictionary)XamlReader.Load(fsR);
                dicR.MergedDictionaries.Clear();
                dicR.MergedDictionaries.Add(dic);
            }
        }
    }
}

ありがとう。

4

1 に答える 1