OnMouseHover Issue (Bug?)

  • Thread starter Thread starter Gates_72
  • Start date Start date
G

Gates_72

Hello,

[Originally posted in dotnet.framework.windowforms, with
no responses]

I have a Windows Form (C#), where I have set an override
on OnMouseHover(), which initially works correctly. I
have also set an override on OnMouseMove(), where I call
this.ResetMouseEventArgs(). This correctly resets the
mouse hover timer.

The problem is that this form is an AutoScroll form.
Once the form is scrolled, the OnMouseHover() event no
longer fires.

Is this a bug, or am I overlooking something?

Thanks,
Gates 72
 
The documentation says this

1.. MouseEnter
2.. MouseMove
3.. MouseHover/ MouseDown/ MouseWheel
4.. MouseUp
5.. MouseLeave
Are you sure you have force the MouseLeave ?? You can only do that by
clicking outside the control region and then Re-entering it

JIM
 

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

Back
Top