vote up 1 vote down star

For a certain inputform, I'd like to make it possible to do input with the keyboard. I know how to read the keys through KeyPressed and KeyUp, but the problem is that when a control has got the focus and the user presses the Enter key, that control receives the a Click event. Is it possible to prevent that behaviour ? Or is it possible to know if a Click Event was fired by the mouse or by the keyboard ?

flag

25% accept rate

3 Answers

vote up 1 vote down check

Does this help? From Microsoft Knowledge Base

Move the Button's code from the button.Click() to a button.MouseClick()

link|flag
vote up 1 vote down

This would be easier if you could describe the situation and exact behaviour you want... :)

You can set:

Form.KeyPreview = True

This sends Key Events to the Form first, and then to the Control. This gives you the opportunity to catch Key Events on the form and 'cancel' them:

e.Handled = True

More info

Also make sure you haven't set the AcceptButton for the Form!

link|flag
vote up 0 vote down

You can also listen for keyboard events and filter out keys.

link|flag

Your Answer

Get an OpenID
or

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