MouseUp Event in Windows CE 4.2 ??

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

Guest

Does anybody know how to intercept the MouseDown and MouseUp Event on a button in a Form under Windows CE ?

I can only get the MouseDown Event from the Form but not when I click on a button - but I would need the events down and up ?

Please urgent help - best with a little example ?!

Thanks very much

Max
email: (e-mail address removed)
 
You can add the MouseUp event handler in code like this:

button1.MouseUp += new MouseEventHandler(button1_MouseUp);

HTH
Neil
 
Back
Top