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
  • 437
  • 7
  • 25

1 Answers1

3

You can achieve this by setting CurrentInputLanguage:

InputLanguage.CurrentInputLanguage = InputLanguage.FromCulture(new System.Globalization.CultureInfo("ja-JP"));
VahidNaderi
  • 2,448
  • 1
  • 23
  • 35
  • 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