- 积分
- 248
- 在线时间
- 84 小时
- 主题
- 6
- 注册时间
- 2014-9-21
- 帖子
- 99
- 最后登录
- 2024-11-16
- 帖子
- 99
- 软币
- 995
- 在线时间
- 84 小时
- 注册时间
- 2014-9-21
|
发表于 2015-1-21 00:03:38
|
显示全部楼层
把解压出来的资源文件放在一个文件夹,起名如zh-CN等放到您应用程序的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-CN");
// Note that the above code should be added BEFORE calling the Run() method.
Application.Run(new Form1());
} |
|