How can I programmatically create an event that would simulate a key being pressed on the keyboard?
feedback
|
|
The question is tagged WPF but the answers so far are specific WinForms and Win32. To do this in WPF, simply construct a KeyEventArgs and call RaiseEvent on the target. For example, to send an Insert key KeyDown event to the currently focused element:
This solution doesn't rely on native calls or Windows internals and should be much more reliable than the others. It also allows you to simulate a keypress on a specific element. Note that this code is only applicable to PreviewKeyDown, KeyDown, PreviewKeyUp, and KeyUp events. If you want to send TextInput events you'll do this instead:
Also note that:
| |||||||||||||
feedback
|
|
I've not used it, but SendKeys may do what you want.
Microsoft has some more usage examples here. | |||||
feedback
|
|
Windows SendMessage API with send WM_KEYDOWN. | ||||
|
feedback
|
Thanks for a very useful post - I'm trying to use InputManager.ProcessInput() because I have an accelerator (CTRL) key I need to check. I am unclear about exactly how to do that - do you have a sample of the syntax I'd use? | |||
|
feedback
|