ToolTip.Draw

  • Thread starter Thread starter JezB
  • Start date Start date
J

JezB

I have an owner drawn ToolTip control for which I handle the Draw event.
This works very nicely but I'm sharing the same tooltip component among many
different controls (it's actually an array of user controls of the same
type). I'm finding that once I hover the mouse over one of these controls,
it is very briefly flashing up the tooltip for the previous control before
replacing it with that of the new control. Not very serious I agree but it
degrades the user experience.

Anything I can do ?
 
I had similar situation but don't have an owner drawn ToolTip. All I did
was use RemoveAll method in the MouseEnter method of control for which you
need to show the tooltip. After that iI would set the tooltip. This worked
for me.
I Hope that helps.

Thanks,
Madhavi
 
Back
Top