毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> net技术 >> 正文

官方汉化包汉化DXperience控件详细步骤

更新时间:2013-4-18:  来源:毕业论文

1.你要先安装某一版本的DXperience控件(如:DXperience-11.2.5.exe)可以在这里http-://www.devexpresscn.-com/下载。

2.安装DXperience控件到某一目录下。(如:D:\DevExpress 11.2)

3.下载对应的汉包。(如:DXperience-11.2.5.exe的汉化包,名称为:dxKB_A421_DXperience_v11.2_(2012-04-27).zip)可以在http:-//www.-devexpresscn.-com/news/DevExpress-news-94.html下载。

4.解压汉包,在解压后的文件夹中找到DevExpress.DLL文件夹,在DevExpress.DLL文件夹中找到zh-CHS文件夹。

5.把zh-CHS文件夹复制到你建立的工程下的Debug文件夹中。(如 D:\Test\汉化Test\汉化Test\bin\Debug)

到这里汉化资源已经到位了。下面是在编程时使用汉化资源。(以C#为例)

6.在编程时,在Main方法中加入System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-CHS");(C#中Main方法在Program.cs文件中)

比较:

加入前:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;电加热炉温度控制系统的设计

namespace 汉o化¡¥Test
{
    static class Program
    {
        /// <summary>
        /// 应®|用®?程¨¬序¨°的Ì?主¡Â入¨?口¨²点Ì?。¡ê
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}

加入后:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace 汉o化¡¥Test
{
    static class Program
    {
        /// <summary>
        /// 应®|用®?程¨¬序¨°的Ì?主¡Â入¨?口¨²点Ì?。¡ê
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-CHS");
            Application.Run(new Form1());
        }
    }
}

到这汉化已经全部完成。接下来就是托控件了(使用控件)。如果你连托控件都不会,那么……我已被震亡了!!

说明:这个方法汉化不完全。(是官方汉化包的问题)

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。