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
 
Back
Top