日期:2014-05-17 浏览次数:20884 次
Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-CN"); Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("zh-CN");
------解决方案--------------------
不要把字符串硬编码到程序里面。
比如
MessageBox.Show("Hello");
你应该这么写:
MessageBox.Show(LanguageService.GetString(ID_SAYHELLO));
假设你把资源放在LanguageService.dll里面。