我已經使用MergedDictionaries和項目的設置在我的項目中編寫了一個選擇語言選項。問題是語言只在我的主窗口和中成功更改,而其他Windows也不成功。我究竟做錯了什麼?在主窗口
設置語言FUNC(編輯:MainWindow.cs):WPF - 僅在MainWindow中更改語言?
/*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>
沒有足夠的信息,如果字典不添加其無法使用它。這意味着你正在合併導致這個問題的英文字典。 –