|
发表于 2014-7-3 17:39:42
|
显示全部楼层
把把解压出来的资源文件文件,如zh-Hans等放到您应用程序的bin目录下。
然后再您应用程序代码的Main中加入以下代码即可
static void Main() {
// The following line provides localization for the application's user interface.
System.Threading.Thread.CurrentThread.CurrentUICulture =
new System.Globalization.CultureInfo("zh_Hans");
// The following line provides localization for data formats.
System.Threading.Thread.CurrentThread.CurrentCulture =
new System.Globalization.CultureInfo("zh_Hans");
// Note that the above code should be added BEFORE calling the Run() method.
Application.Run(new Form1());
} |
|