User pressing the rocker wheel

  • Thread starter Thread starter Manfred Derenbach
  • Start date Start date
M

Manfred Derenbach

How can I react to the user pressing the rocker wheel of the PPC?

Using C#.

Thanks for any hint!
 
Does it raise Form.KeyDown event with Keys.Enter as the key code?
What you can do is to add an event handler to Form.KeyDown event, and
examine what event is raised when the rocker wheel is being pressed.
If you have child controls on the form, they may intercept the message. So
start with an empty form first.
Hope this helps.
Xin
 
Back
Top