In my application I want to use a tooltip to point at a label to get the users attention:
toolTip.IsBalloon = true;
toolTip.Show("message", label1);
The problem is that the balloon isn't pointing at the specified label. What should I do?
|
In my application I want to use a tooltip to point at a label to get the users attention:
The problem is that the balloon isn't pointing at the specified label. What should I do?
| |||||||
feedback
|
|
This is a known bug. Try calling it twice for a hack work-around:
| ||||
|
feedback
|
|
You can do something like this.. more specific (i.e) how much time the tool tip will be displayed... When MouseLeave
when mouse enter
| |||
|
feedback
|
|
Tooltip works with MouseHover and MouseLeft [just imagine in this way] If the mouse come over the Label, the tooltip will be displayed, when the mouse left, tooltip will dissappear. and the code should be:
just ToolTipTitle is optional :) | |||
|
feedback
|