How do I capture a keyboard shortcut, no matter which control has focus? I don't want to go and write the same thing for each possible control that the user could give focus to. So how can I watch for a page-wide/control-independent shortcut?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Add this code to the constructor it will handle a global key down and key
heres their events
you can ahndle your own logic inside this event. |
|||
|
|
|
How about setting an event handler at the root element? I think event will eventually reach the parent control, if it is not handled anywhere else. Here's what I would do for a simple KeyDown event.
|
|||
|
|
