vote up 1 vote down star

I want to make it so that no matter which control has focus, it will do my event. So that I dont have to write a keydown event for all 137 of my objects. Is this possible?

Thanks

flag

43% accept rate
Be aware that if it wasn't possible via the form's KeyPreview, you could simply recursively-loop through the form's controls and assign an event to the controls at run time. Events, so long as they have the same signature, are easily reused. – overslacked Sep 1 at 19:34

1 Answer

vote up 3 vote down check

You have to set the KeyPreview property of your Form to True.

When this property is set to true, the form will receive all KeyPress, KeyDown, and KeyUp events.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.