0

我有两种语言,英语和古吉拉特语的 UI。如果,在关闭 UI 时语言是古吉拉特语,那么在打开时语言也应该是古吉拉特语。我怎么知道这个:?? 语言选择的代码在这里。

ComboBoxItem englishLanguageItem = new ComboBoxItem()
        { 
            Content = Strings.MainWindow_Language_Selection_English_Label
        };

        ComboBoxItem gujaratiLanguageItem = new ComboBoxItem()
        {
            Content = Strings.MainWindow_Language_Selection_Gujarati_Label
        };

请提供一些有关它的代码。

4

1 回答 1

1

不确定我是否理解您的问题。您需要知道最后选择的语言是什么,所以当您的程序重新打开时,它会使用该语言?

如果是这样,您必须将其保存在某个地方,也许是在注册表中。

在这里您可以查看如何操作:http: //www.codeproject.com/Articles/3389/Read-write-and-delete-from-registry-with-C

于 2012-05-19T15:45:12.233 回答