I have a simple modal form which I'd like to close when Esc key pressed. It's simple doing this handling form_KeyDown event. The problem is the controls on the form. When the form first launched one of the buttons get focus and pressing Esc of course doesn't do anything. Disabling TabStop of every button prevents this but again Esc stops working when any button is used. Is there a way to do this other then handling KeyDown of every control on the form?
|
1
|
|
|
|
|
|
You need to set the KeyPreview property on the form to true, and handle the forms previewkeydown event. |
||
|
|
|
Does your form have a Cancel button? If so set the This will close the form when Esc is pressed. |
||
|
|
|
It might be overkill, but have you looked at jQuery? |
||||||
|
|
|
I was trying to do more-or-less the same thing in a Compact Framework application (I wanted to have the Form capture F1..Fn keys and handle them in a global manner, while letting controls handle cursor & numeric keys). Simon P Stevens' solution above is ideal for desktop .NET but PreviewKeyDown isn't supported by the CF. So my solution was:
This seems to be a reasonably easy way to implement this for the Compact Framework. |
||
|
|
