ToolTip Constructores

Definición

Inicializa una nueva instancia de la clase ToolTip.

Sobrecargas

ToolTip()

Inicializa una nueva instancia de ToolTip sin un contenedor especificado.

ToolTip(IContainer)

Inicializa una nueva instancia de la clase ToolTip con un contenedor especificado.

ToolTip()

Inicializa una nueva instancia de ToolTip sin un contenedor especificado.

public:
 ToolTip();
public ToolTip ();
Public Sub New ()

Ejemplos

En el ejemplo de código siguiente se crea una instancia de la ToolTip clase . A continuación, el código inicializa las propiedades AutoPopDelayde retraso , InitialDelayy ReshowDelay. Además, la instancia de la ToolTip clase establece la ShowAlways propiedad en true para permitir que el texto de información sobre herramientas se muestre independientemente de si el formulario está activo. Por último, en el ejemplo se asocia texto de información sobre herramientas a dos controles de un formulario, y Button .CheckBox El ejemplo de código requiere que el método definido en el ejemplo se encuentre dentro de un Form objeto que contiene un Button control denominado button1 y un CheckBox control denominado checkBox1, y que se llama al método desde el constructor de Form.

// This example assumes that the Form_Load event handling method
// is connected to the Load event of the form.
void Form1_Load( Object^ sender, System::EventArgs^ e )
{
   // Create the ToolTip and associate with the Form container.
   ToolTip^ toolTip1 = gcnew ToolTip;
   
   // Set up the delays for the ToolTip.
   toolTip1->AutoPopDelay = 5000;
   toolTip1->InitialDelay = 1000;
   toolTip1->ReshowDelay = 500;
   // Force the ToolTip text to be displayed whether or not the form is active.
   toolTip1->ShowAlways = true;
   
   // Set up the ToolTip text for the Button and Checkbox.
   toolTip1->SetToolTip( this->button1, "My button1" );
   toolTip1->SetToolTip( this->checkBox1, "My checkBox1" );
}
// This example assumes that the Form_Load event handling method
// is connected to the Load event of the form.
private void Form1_Load(object sender, System.EventArgs e)
{
   // Create the ToolTip and associate with the Form container.
   ToolTip toolTip1 = new ToolTip();

   // Set up the delays for the ToolTip.
   toolTip1.AutoPopDelay = 5000;
   toolTip1.InitialDelay = 1000;
   toolTip1.ReshowDelay = 500;
   // Force the ToolTip text to be displayed whether or not the form is active.
   toolTip1.ShowAlways = true;
      
   // Set up the ToolTip text for the Button and Checkbox.
   toolTip1.SetToolTip(this.button1, "My button1");
   toolTip1.SetToolTip(this.checkBox1, "My checkBox1");
}
' This example assumes that the Form_Load event handling method
' is connected to the Load event of the form.
Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles MyBase.Load
   ' Create the ToolTip and associate with the Form container.
   Dim toolTip1 As New ToolTip()
   
   ' Set up the delays for the ToolTip.
   toolTip1.AutoPopDelay = 5000
   toolTip1.InitialDelay = 1000
   toolTip1.ReshowDelay = 500
   ' Force the ToolTip text to be displayed whether or not the form is active.
   toolTip1.ShowAlways = True
   
   ' Set up the ToolTip text for the Button and Checkbox.
   toolTip1.SetToolTip(Me.button1, "My button1")
   toolTip1.SetToolTip(Me.checkBox1, "My checkBox1")
End Sub

Comentarios

Este constructor crea una instancia de una información sobre herramientas no asociada a ningún contenedor.

Consulte también

Se aplica a

ToolTip(IContainer)

Inicializa una nueva instancia de la clase ToolTip con un contenedor especificado.

public:
 ToolTip(System::ComponentModel::IContainer ^ cont);
public ToolTip (System.ComponentModel.IContainer cont);
new System.Windows.Forms.ToolTip : System.ComponentModel.IContainer -> System.Windows.Forms.ToolTip
Public Sub New (cont As IContainer)

Parámetros

cont
IContainer

IContainer que representa el contenedor de ToolTip.

Comentarios

El ToolTip constructor permite asociar un ToolTip objeto a cualquier Container objeto . Al asociar de ToolTip esta manera, se pasa el control de la duración de la información sobre herramientas a .Container Esto puede resultar útil si usa varios componentes en la aplicación y desea eliminarlos al mismo tiempo. Por ejemplo, si asocia un ToolTip, y ImageLista Timer con un Container, al llamar Dispose a en Container también forzará la eliminación de todos estos componentes.

Consulte también

Se aplica a