mouse hover

  • Thread starter Thread starter climax!
  • Start date Start date
C

climax!

I can't find an event which occurs when the mouse hovers over a control
or leaves it. Normal .net does have such events. Is there a workaround
for this?
 
What device are you using? Usually there is no mouse pointer so you must be
looking for events when dragging the stylus on the screen surface. If the
mouse move events are not supported by the control you are using, you can
use ApplicationEx and IMessageFilter implementation to catch them (search
the archives). Alternatively you can inherit from Control and then you can
handle those events.

Cheers
Daniel
 
it is inherited standard control
the mousemove event is supported, and this solves the problem when the
mouse is on the control... but still have no idea how to 'see' that the
mouse left the control.
 
Back
Top