上传者: liulanghe
|
上传时间: 2021-11-25 13:21:23
|
文件大小: 677KB
|
文件类型: -
开始开放免费下载了 资源分 0 需要的速度
最新DevExpress DXperience Universal v9.1.3注册插件(包含Components、eXpressApp Framework、CodeRush和Refector! Pro),安装说明:
1. 下载官方试用版安装程序,地址:http://www.devexpress.com/Downloads/NET/
2. 安装试用版程序
3. 安装本插件程序
注意事项:
1. 本程序不是破解程序,不会修改原版程序
2. Components和eXpressApp Framework的注册插件(以下简称Components插件)是作为Visual Studio 2005和Visual Studio 2008的插件来工作的,因此也只能工作在Visual Studio 2005和Visual Studio2008上,其他开发工具不支持
3. CodeRush和Refector! Pro的注册插件(以下简称IDETools插件)不是Visual Studio的插件,而是作为一个ProductModule进行加载的
4. 你可以独立安装Components插件和IDETools插件
5. 在安装过程中,会提示是否编译License文件(默认是选中的),这项仅对Components插件才有效,当选中这个选项时,需要在所有Build程序集的机器上安装Components插件(例如TFS的Build服务器),这时候编译出来的程序集和使用官方注册版程序的结果相同;如果没有选中这个选项,那么不需要在所有Build程序集的机器上安装Components插件,编译出来的程序集和使用官方注册版程序相比,缺少了License资源文件,不过程序运行结果是一样的,不会提示Trial信息
6. 安装程序的Customer Information界面输入的UserName信息,将作为DevExpress的注册信息显示在控件设计器菜单的About对话框里面
7. 如果不想用本插件了,到添加删除程序中卸载DevExpress 2009.1 Registration即可。
强烈建议,在安装Components插件时,选中编译License文件选项,并在需要Build程序集的机器上安装Components插件,这样编译的程序集和使用官方注册版程序的结果是一样的
Devexpress官方的汉化方式,通过资源文件进行汉化,支持9.1各个版本。
使用方法:
1、zh-CHS目录拷贝到生成的EXE程序的执行目录下。
2、在主程序的program.cs中的main函数的最前面加入如下两行代码:
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-CN");
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("zh-CN");
例如:
namespace WindowsFormsApplication1
{
static class Program
{
///
/// 应用程序的主入口点。
///
[STAThread]
static void Main()
{
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-CN");
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("zh-CN");
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}