I simply want when someone hovers his mouse over a checkbox a "tip balloon" to appear describing what the control does?
How can this be done?
Using VB.NET with Visual Studio 2010.
Drag a ToolTip
control from the toolbox on the left onto your form (the designer will then put it below your form, since it's not meant to be visible normally). By default it will be named "tooltip1".
Then select your checkbox and go over to its properties window. You should see a property labeled "Tooltip on tooltip1" - set this to whatever you want. When you run the app and hold the mouse over your checkbox, you should see the tooltip text.
For WinForms, see Display a tooltip over a button using Windows Forms, or briefly stated...
For WPF:
<Button>Click Me
<Button.ToolTip>
<ToolTip>Blob of text.
</ToolTip>
</Button.ToolTip>
</Button>
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