2010-04-11 33 views
4

我安裝了Windows 7.使用.Net Framework 3.5安裝Visual Studio 2008。然後Russified Windows。在Visual Studio中出現此錯誤消息後突然出現在俄語中。 如何刪除錯誤消息.NET Framework的俄語翻譯版本?如何刪除本地化俄語的.NET Framework?

回答

0

Windows的> CTRL面板 - >區域和語言選項 - >地點 - >您現在的位置:從俄羅斯改變美國

我不知道這是否是問題 - 但是你可以試試這個了.. 。

其他SO答案建議爲點網卸載語言包....

+0

我有同樣的問題。試過你的建議:仍然俄羅斯 – Hun1Ahpu 2010-04-11 18:01:55

0

你可以試試這個:VS->工具 - >選項 - > Enviroment->國際設置 - >然後選擇合適的語言。

+0

這不起作用(在VS2017) – smg 2017-08-24 06:31:59

0

必須將當前線程的所需文化:

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

namespace UnlocolizeDotNetFrameworkMessage 
{ 
    static class Program 
    { 
     /// <summary> 
     /// The main entry point for the application. 
     /// </summary> 
     [STAThread] 
     static void Main() 
     { 
      Application.EnableVisualStyles(); 
      Application.SetCompatibleTextRenderingDefault(false); 

      System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("en-US"); 

      Application.Run(new Form1()); 
     } 
    } 
}