我如何使用SetLocaleinfo()

时间:2011-10-24 07:37:06

标签: c#

我想用C#更改操作系统的语言。那么如何在c#

中使用SetLocaleinfo()函数

1 个答案:

答案 0 :(得分:0)

如果您想提供有关您的环境的更多信息(例如,您使用winforms / wpf / silverlight / ...的UI),那将是一件好事,以获得更具体的回答。

如果您使用WPF或Silverlight,请尝试:

// Put the using statements at the beginning of the code module
using System.Threading;
using System.Globalization;
// Put the following code before InitializeComponent()
// Sets the culture to French (France)
Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-FR");
// Sets the UI culture to French (France)
Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR");