- 积分
- 0
- 在线时间
- 14 小时
- 主题
- 2
- 注册时间
- 2018-2-21
- 帖子
- 20
- 最后登录
- 2018-10-29
- 帖子
- 20
- 软币
- 192
- 在线时间
- 14 小时
- 注册时间
- 2018-2-21
|
你好朋友们,想请教一下 DevExpress 汉化资源, 汉化文件解压放在Debug文件夹下面,然后在 MainWindow.xaml.cs中增加代码
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-Hans");
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("zh-Hans");
}
}
问题1: 上面的汉化步骤有没有错误?
问题2: 汉化了哪些内容?
问题3: 从哪里可以看到汉化有没有成功?
版本号是 17.2.5
谢谢大家
参考帮助:
汉化方法:将汉化文件解压后
1.直接放在程序运行目录下即可
2.有多个语言包也可以指定语言包,在程序中写入以下代码:
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-Hans");
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("zh-Hans");
注意:汉化文件夹的名称改为zh-Hans 汉化版本请注意对应不同的版本号
|
|