ToolTip Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inizializza una nuova istanza della classe ToolTip.
Overload
ToolTip() |
Inizializza una nuova istanza della classe ToolTip senza un contenitore specificato. |
ToolTip(IContainer) |
Inizializza una nuova istanza della classe ToolTip con un contenitore specificato. |
ToolTip()
Inizializza una nuova istanza della classe ToolTip senza un contenitore specificato.
public:
ToolTip();
public ToolTip ();
Public Sub New ()
Esempio
Nell'esempio di codice seguente viene creata un'istanza della ToolTip classe. Il codice inizializza quindi le proprietà AutoPopDelaydi ritardo , , InitialDelaye ReshowDelay. Inoltre, l'istanza della classe imposta la proprietà su per true
abilitare la ShowAlways visualizzazione del ToolTip testo della descrizione comando indipendentemente dal fatto che il modulo sia attivo. Infine, l'esempio associa il testo della descrizione comando a due controlli in un modulo, a e Button a CheckBox. L'esempio di codice richiede che il metodo definito nell'esempio si trovi all'interno di un Form oggetto contenente un controllo denominato e un CheckBoxButton controllo denominato button1
checkBox1,
e che il metodo viene chiamato dal costruttore di 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
Commenti
Questo costruttore crea un'istanza di una descrizione comando non associata a alcun contenitore.
Vedi anche
Si applica a
ToolTip(IContainer)
Inizializza una nuova istanza della classe ToolTip con un contenitore specificato.
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)
Parametri
- cont
- IContainer
Oggetto IContainer che rappresenta il contenitore dell'oggetto ToolTip.
Commenti
Il ToolTip costruttore consente di associare un oggetto ToolTip a qualsiasi Container oggetto. Associando in questo modo il ToolTip controllo della durata della descrizione comando a Container. Ciò può essere utile se si usano diversi componenti nell'applicazione e si vuole eliminarli contemporaneamente. Ad esempio, se si associa un ToolTipoggetto , ImageListun e un TimerContainera a , chiamando Dispose su , forza anche l'eliminazione Container di tutti questi componenti.