How can I programmatically create an event that would simulate a key being pressed on the keyboard?
|
|
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:
|
|||||||||||||||
|
|
I've not used it, but SendKeys may do what you want.
Microsoft has some more usage examples here. |
|||||||
|
|
Windows SendMessage API with send WM_KEYDOWN. |
||||
|
|
|
To produce key events without Windows Forms Context, We can use the following method,
sample code is given below:
List of Virtual Keys are defined here. To get the complete picture, please use the below link, http://tksinghal.blogspot.in/2011/04/how-to-press-and-hold-keyboard-key.html |
|||
|
