Aviv
Aviv

Reputation: 466

How To Detect Language Changes While Runtime ? (C#)

I want to detect when the user is changing his language on the keyboard. For example, I want to know if the user is using English, and then changing the language to French. I want to detect this change from all the active threads. I mean that I want to know when that change happens in the OS, And not in some specific thread.. I'm using C# language.(Console Application)

Can Anyone help me to figure it out? I will be glad to some help.. Thank You.

Upvotes: 7

Views: 2339

Answers (2)

Gary C.
Gary C.

Reputation: 116

If you develop using WinForms use InputLanguageChanging event

Upvotes: 1

olydis
olydis

Reputation: 3310

This is how you get the current keyboard layout: How to determine the current input language?

This is how you change it: Change Keyboard Layout for Other Process

Upvotes: 0

Related Questions