上传者: pansw_cool
|
上传时间: 2021-10-03 11:43:25
|
文件大小: 210KB
|
文件类型: -
官方版汉化文件,用法:
把汉化资源文件解压到程序发布文件夹(连目录一起:zh-cn),
在主程序文件加入两行代码,编译后运行即可。
例子程序如下:
static class Program {
[STAThread]
static void Main() {
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-CHS");
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("zh-CN");
DevExpress.UserSkins.OfficeSkins.Register();
DevExpress.UserSkins.BonusSkins.Register();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmMain());
}