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.
Asked
Active
Viewed 915 times
1 Answers
3
foreach (InputLanguage c in System.Windows.Forms.InputLanguage.InstalledInputLanguages)
{
Console.WriteLine(c.Culture.EnglishName);
}

Eser
- 12,346
- 1
- 22
- 32