I want to call the Switch language options on Windows, basically pressing the key ALT + SHIFT from C#. I read the answer from here How to start windows "run" dialog from C#
This is what I have tried so far
//KeyboardSend.KeyDown(Keys.Alt);
//KeyboardSend.KeyDown(Keys.LShiftKey);
//KeyboardSend.KeyDown(Keys.Alt);
//KeyboardSend.KeyDown(Keys.LShiftKey);
Also
SendKeys.Send("%+")
If you press ALT + SHIFT you will understand what I'm trying to achive