keypress for non printing keys

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do i use cursor keys or other non printing keys like alt and shift to
raise an event. If it's possible, how do i use the keypress event to do it
 
How do i use cursor keys or other non printing keys like alt and shift to
raise an event. If it's possible, how do i use the keypress event to do it

For these keys you need to use KeyDown and KeyUp events.

In these events you get a KeyEventArgs parameter various properties to
check which keys where pressed.

Claudio Grazioli
www.grazioli.ch
 
Back
Top