- 积分
- 12
- 在线时间
- 62 小时
- 主题
- 2
- 注册时间
- 2015-4-15
- 帖子
- 96
- 最后登录
- 2016-3-13
- 帖子
- 96
- 软币
- 399
- 在线时间
- 62 小时
- 注册时间
- 2015-4-15
|
发表于 2015-7-5 21:53:59
|
显示全部楼层
本帖最后由 矿工码农g 于 2015-7-5 21:58 编辑
用资源包里面的批处理注册dll,以繁体中文为例,
在资源包根目录开一个管理员权限命令行窗口,运行 gacinstall zh-Hant
请注册繁体中文zh-Hant资源dll必须在子目录zh-Hant里面
如果注册成功,不需要自己拷贝资源dll到程序目录,vs会自动拷贝
在主程序的Program.cs的主入口点加入本地化代码:
namespace WindowsFormsApplication1
{
static class Program
{
static void Main()
{
// The following line provides localization for the application's user interface.
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-Hant");
// The following line provides localization for data formats.
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("zh-Hant");
......
Application.Run(new Form1());
如果不行,请参考
https://documentation.devexpress ... Document5755/Obtain
https://documentation.devexpress ... /CustomDocument2405 |
评分
-
查看全部评分
|