private void Form1_Load(object sender, EventArgs e)
{
ToolTip tip = new ToolTip();
tip.IsBalloon = true;//是否气球
tip.UseAnimation = true;
tip.UseFading = true;
tip.ToolTipTitle = "";
tip.AutoPopDelay = 5000;
tip.SetToolTip(this.label1, "tip.label1");
tip.SetToolTip(this.button1, "tip.button1");
tip.SetToolTip(this.textBox1, "tip.textBox1");
}
or
在界面设计时,拖放ToolTip控件(toolTip1),然后点label控件,在属性中多出一个toolTip1上的tooltip属性,设置提示就好了

运行结果如下: