首先你是想问tooltip吧
在C#中控件一般没有tooltip属性
它的用法是
ToolTip toolTip1 = new ToolTip(this.components);
//ToolTip toolTip1 = new ToolTip(); // Set up the delays for the ToolTip.
toolTip1.AutoPopDelay = 5000;
toolTip1.InitialDelay = 800;
toolTip1.ReshowDelay = 300;
// Force the ToolTip text to be displayed whether or not the form is active.
toolTip1.ShowAlways = true;
toolTip1.SetToolTip(控件,"描述");