Tooltips for Button

image_pdfimage_print


   
 
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

public class Tooltips : System.Windows.Forms.Form {
    private System.Windows.Forms.Button btnTooltips;
    private System.Windows.Forms.TextBox txtTooltip;
    public Tooltips() {
        ToolTip forButton = new ToolTip();
        forButton.SetToolTip(btnTooltips, "You are now over the button!!");
        forButton.SetToolTip(txtTooltip, "You are now over the textbox!!");
        forButton.AutomaticDelay = 2000;
        this.btnTooltips = new System.Windows.Forms.Button();
        this.txtTooltip = new System.Windows.Forms.TextBox();
        this.SuspendLayout();

        this.btnTooltips.Location = new System.Drawing.Point(0, 152);
        this.btnTooltips.Size = new System.Drawing.Size(288, 104);
        this.btnTooltips.Text = "Press Me";

        this.txtTooltip.Location = new System.Drawing.Point(0, 8);
        this.txtTooltip.Multiline = true;
        this.txtTooltip.Size = new System.Drawing.Size(288, 136);
        this.txtTooltip.Text = "";

        this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
        this.ClientSize = new System.Drawing.Size(292, 266);
        this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                      this.txtTooltip,
                                      this.btnTooltips});
        this.ResumeLayout(false);

    }
    [STAThread]
    static void Main() {
        Application.Run(new Tooltips());
    }
}