toolTip1 的用法代码

 private void Form1_Load(object sender, EventArgs e)
        {
            var toolTip1 = new ToolTip();

            toolTip1.AutoPopDelay = 10000;
            toolTip1.InitialDelay = 500;
            toolTip1.ReshowDelay = 500;

            toolTip1.ShowAlways = true;

            toolTip1.SetToolTip(this.label1, @"系统所有会员分三类【A类、B类、C类】
A类:最近30天累计消费大于等于2000.00元的用户
B类:最近30天累计消费大于等于1000.00元并且小于2000.00元的用户
C类:最近30天累计消费小于1000.00元的用户");

        }

原文地址:https://www.cnblogs.com/GeDiao/p/4092391.html