Does anyone know why the KeyPress Event doesn't get fired when the user presses a down arrow? I have to look for it in the KeyDown event. I was just wondering if this was something that I was doing wrong or not?
|
|
|||||
|
|
|
According to the documentation of the KeyPress event (assuming you are using WinForms):
The down arrow key isn't a character key, so this event shouldn't be raised for it. |
||
|
|
|
|
Use KeyDown instead
|
|||
|
|
