gpt4 book ai didi

c# - 在运行时切换 wpf 资源字典

转载 作者:可可西里 更新时间:2023-11-01 03:10:14 24 4
gpt4 key购买 nike

我正在尝试构建一个允许用户在运行时更改主题的 wpf 应用程序。到目前为止,我所做的是创建一个资源字典,其中定义了应用程序的所有颜色,然后我在 xaml 中绑定(bind)到这个字典。

下面是我用来切换资源字典的代码:

if (System.IO.File.Exists(fileName))
{
using (FileStream fs = new FileStream(fileName, FileMode.Open))
{
ResourceDictionary dic = (ResourceDictionary)XamlReader.Load(fs);
Resources.MergedDictionaries.Clear();
Resources.MergedDictionaries.Add(dic);
}
}

这段代码运行良好,我知道它正在切换资源字典,但它不会更新已经显示在屏幕上的元素。我的问题是:如何刷新或重新绑定(bind)屏幕以考虑新的资源字典?

谢谢

最佳答案

就我而言,我只需更改:

Resources.MergedDictionaries.Clear();
Resources.MergedDictionaries.Add(dic);

到:

Application.Current.Resources.MergedDictionaries.Clear();
Application.Current.Resources.MergedDictionaries.Add(dic);

关于c# - 在运行时切换 wpf 资源字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2381085/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com