Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change Keyboard Layout for Other Process

I'm writing a program in C# that runs in the background and allows users to use a hotkey to switch keyboard layouts in the active window. (Windows only supports CTRL+SHIFT and ALT+SHIFT)

I'm using RegisterHotKey to catch the hotkey, and it's working fine.

The problem is that I can't find any API to change the keyboard layout for the focused window.

ActivateKeyboardLayout and LoadKeyboardLayout can only change the keyboard layout for the calling thread.

Does anyone know how to change the keyboard layout for a different thread (the way the Language Bar does)?

like image 491
SLaks Avatar asked Nov 04 '08 20:11

SLaks


2 Answers

PostMessage(handle, 
    WM_INPUTLANGCHANGEREQUEST, 
    0, 
    LoadKeyboardLayout( StrCopy(Layout,'00000419'), KLF_ACTIVATE)
);
like image 78
Ramil Mammadov Avatar answered Oct 22 '22 03:10

Ramil Mammadov


I think the trick is to get your code to execute in the context of the thread whose keyboard layout you wish to change. You'll need to do some win32 interop here and learn about DLL Injection to get your code to execute in the remote thread.

A keyboard hook handler looks like a good option for you here.

Take a look at http://www.codeproject.com/KB/threads/winspy.aspx

like image 34
Sijin Avatar answered Oct 22 '22 03:10

Sijin