欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C#笔记——自定义ToolTip

程序员文章站 2022-07-13 17:13:45
...

ToolTip用来表示一个长方形的小弹出窗口,该窗口在用户将指针悬停在一个控件上时显示有关该控件用途的简短说明。

实现代码如下:

private void FormLoad(object sender, EventArgs e)
{
    // Create the ToolTip and associate with the Form container.
    ToolTip toolTip = new ToolTip();

    // Set up the delays for the ToolTip.
    toolTip.AutoPopDelay = 500;    //工具提示保持可见的时间期限
    toolTip.InitialDelay = 100;     //鼠标放上,自动打开提示的时间
    toolTip.ReshowDelay = 50;       //鼠标离开,自动关闭提示的时间

    toolTip.ShowAlways = true;     //总是显示,即便空间非活动
    toolTip.UseAnimation = true;   //动画效果
    toolTip.UseFading = true;      //淡入淡出效果
    toolTip.IsBalloon = true;      //气球状外观

    // Set up the ToolTip text for the Button
    toolTip.SetToolTip(this.button1, "这是一个按键");
}

效果图:
C#笔记——自定义ToolTip