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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top