Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding tooltip to groupbox

After reading the descriptions of every property, I just can't find anything to define a tooltip in the groupbox class, or textbox or listview. Can I ask for a link to put me on the right track?

like image 231
CodeMinion Avatar asked Jan 23 '26 15:01

CodeMinion


1 Answers

To define tooltips, you first need to drag a ToolTip component on the from from the toolbox. Then every control will have addition tooltip text properties. You can also do that manually:

ToolTip toolTip1 = new ToolTip();
toolTip1.SetToolTip(this.groupBox1, "My groupBox1 tooltip!");
toolTip1.SetToolTip(this.checkBox1, "My checkBox1 tooltip!");

See the msdn article here.

like image 138
Teoman Soygul Avatar answered Jan 26 '26 08:01

Teoman Soygul



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!