2017-01-29 51 views
0

我已經使用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> 
+0

沒有足夠的信息,如果字典不添加其無法使用它。這意味着你正在合併導致這個問題的英文字典。 –

回答

1

您還沒有告訴我們在哪裏定義了SetLanguageDictionary()方法,但是如果要全局應用資源,則可以將ResourceDictionary合併到全局Application.Current.Resources中:

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

就是這樣!謝謝[和其他誰也幫忙!],SetLanguageDictionary()被設置在MainWindow.cs中(被編輯),並且整個應用程序需要受到影響。 – Yair

1

你知道爲什麼只在MainWindow中改變語言嗎?因爲當你打電話給SetLanguageDictionary()時,只有MainWindow會刷新(重新加載),以及爲什麼標籤和文本會改變。爲了在其他窗口中更改語言,您需要刷新它們 - 重新加載它們 - 並且在重新加載過程中,內容和標籤將被更新。

你可以從主窗口調用其他窗口,如下圖所示

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

new window()將重新加載窗口,然後語言可以改變。

我已經使用過這樣的感覺..