Add tooltip to group box

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

+3
source share
2 answers

To define tooltips, you first need to drag the ToolTip component from the application from the toolbar. Then each control will have additional tooltip text properties. You can also do this manually:

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

See the msdn article here .

+3
source
  • ToolTip . .
  • Tool Tip on toolTip1 (toolTip1 - ).
0

All Articles