我有两种语言,英语和古吉拉特语的 UI。如果,在关闭 UI 时语言是古吉拉特语,那么在打开时语言也应该是古吉拉特语。我怎么知道这个:?? 语言选择的代码在这里。
ComboBoxItem englishLanguageItem = new ComboBoxItem()
{
Content = Strings.MainWindow_Language_Selection_English_Label
};
ComboBoxItem gujaratiLanguageItem = new ComboBoxItem()
{
Content = Strings.MainWindow_Language_Selection_Gujarati_Label
};
请提供一些有关它的代码。