2
Answers

events

srinath

srinath

15y
3k
1

hi,
what is the difference between keypress and enter events of a button.
Answers (2)
0
carle lai

carle lai

NA 42 0 15y
1) KeyPress = keydown + keyup;
2) there is nearly no difference between keypress and enter evnets of a button in my mind.
  maybe 'enter' is only keydown event.


0
Alex

Alex

NA 4 0 15y

The enter event occurs when the button gets focus.  Once the button has focus if you press a key you will activate the keypress event.
You can test it by creating a button with two events like the following porley coded example ;) to see how the various events get handled.
private void testkeypress(object sender, KeyPressEventArgs e)
{
textbox1.Text =
"keypress";
}
private void testenter(object sender, EventArgs e)
{
textbox2.Text =
"enter";
}
Next Recommended Forum