.net - Down Arrows doesn't fire KeyPress Event -


Do anyone know that the keypress event is not removed when the user presses the down arrow? I have to look at this keydown event, is it just something I am doing wrong?

are using WinForms according to the documentation of the keypages event):

The keypress event is not picked by the noncharacter key; However, non-charger keys increase KeyDown and KeyUp events.

The down arrow key is not of a character, so this incident should not be raised for it.


Comments