DevExpress 汉化

 

 

把把解压出来的资源文件文件,如zh-Hans等放到您应用程序的bin目录下。
然后再您应用程序代码的Main中加入以下代码即可
static void Main() {
    // The following line provides localization for the application's user interface.
    System.Threading.Thread.CurrentThread.CurrentUICulture =
        new System.Globalization.CultureInfo("zh-Hans");

    // The following line provides localization for data formats.
    System.Threading.Thread.CurrentThread.CurrentCulture =
        new System.Globalization.CultureInfo("zh-Hans");

    // Note that the above code should be added BEFORE calling the Run() method.
    Application.Run(new Form1());
}

DevExpress 汉化_第1张图片DevExpress 汉化_第2张图片 DevExpress 汉化_第3张图片

你可能感兴趣的:(DevExpress)