1

How to change the Language to Japanese in the Language Bar dynamically on for a C# windows application.

Should I use some script to invoke language settings or is there any other better way to do it

neo
  • 445
  • 6
  • 24

1 Answers1

4

You can achieve this by setting CurrentInputLanguage:

InputLanguage.CurrentInputLanguage = InputLanguage.FromCulture(new System.Globalization.CultureInfo("ja-JP"));
VahidNaderi
  • 2,263
  • 1
  • 22
  • 32
  • A question, what do you do, it the application does change the input, but the Language Bar still shows the earlier language, like **EN** instead of **JA**. See post on this please: http://stackoverflow.com/q/37314482/6201755 – ib11 May 19 '16 at 05:27