WPF - 语言仅在MainWindow中更改?

时间:2017-01-29 18:27:44

标签: c# .net wpf dictionary mergeddictionaries

我使用MergedDictionaries和项目设置在我的项目中编写了一个选择语言选项。问题是语言仅在我的MainWindow中成功更改,而也不在其他Windows中。我做错了什么?
MainWindow中的Set-language func(编辑:MainWindow.cs ):

/*set language*/
    private void SetLanguageDictionary()
    {
        ResourceDictionary dict = new ResourceDictionary();
        if (Properties.Settings.Default.Language.Equals("en")) //english was set
        {
            dict.Source = new Uri("\\res\\enDictionary.xaml", UriKind.Relative);
        }
        else //otherwise - hebrew as default lang.
        {
            dict.Source = new Uri("\\res\\hebDictionary.xaml", UriKind.Relative);
        }
        //add required dictionary to the MergedDictionaries
        Resources.MergedDictionaries.Add(dict);
    }

其中一个字典的一个小例子[它们是对称设置的,如果重要的话]:

<ResourceDictionary 
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:UI_WPF"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="employees">Employees</system:String>
<system:String x:Key="employers">Employers</system:String>
<system:String x:Key="contracts">Contracts</system:String> </ResourceDictionary>

2 个答案:

答案 0 :(得分:1)

您尚未告诉我们SetLanguageDictionary()方法的定义位置,但如果您想全局应用资源,可以将ResourceDictionary合并到全局Application.Current.Resources中:

Application.Current.Resources.MergedDictionaries.Add(dict);

答案 1 :(得分:1)

你知道为什么只有MainWindow的语言变化?因为当您调用SetLanguageDictionary()时,只有MainWindow会刷新(重新加载),以及标签和文本会发生变化的原因。要在其他窗口中更改语言,您需要刷新它们 - 再次重新加载它们 - 在重新加载过程中,内容和标签将会更新。

您可以从MainWindow调用其他窗口,如下所示

window win = new window();
//then
win.AnyMethodyou_want();

new window()将重新加载窗口,然后语言可以更改。

我以前用过这种方式..