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?
This is a known bug.
Try calling it twice for a hack work-around:
toolTip.Show(string.Empty, label1, 0);
toolTip.Show("message", label1);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With