-2

The questions I saw here is mostly about getting current input layout, but I need list of all installed input layouts. It's like when we install Windows we choose additional input method for our native language and we usually has 2 of them. And I need to know it.

Kosmo零
  • 4,001
  • 9
  • 45
  • 88

1 Answers1

3
foreach (InputLanguage c in System.Windows.Forms.InputLanguage.InstalledInputLanguages)
{
    Console.WriteLine(c.Culture.EnglishName);
}
Eser
  • 12,346
  • 1
  • 22
  • 32