up vote 2 down vote favorite
share [g+] share [fb]

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 ?

link|improve this question

50% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Does this help? From Microsoft Knowledge Base

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

link|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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