Sdílet prostřednictvím


ToolTip.InitialDelay Vlastnost

Definice

Získá nebo nastaví čas, který se předá, než se zobrazí popis.

public:
 property int InitialDelay { int get(); void set(int value); };
public int InitialDelay { get; set; }
member this.InitialDelay : int with get, set
Public Property InitialDelay As Integer

Hodnota vlastnosti

Časové období v milisekundách, po které musí ukazatel zůstat na ovládacím prvku, než se zobrazí okno Popis tlačítka.

Příklady

Následující příklad kódu vytvoří instanci ToolTip třídy a přidruží instanci k Form instanci, ve které je instance vytvořena. Kód pak inicializuje vlastnosti AutoPopDelayzpoždění , InitialDelaya ReshowDelay. Kromě instance ToolTip třídy nastaví ShowAlways vlastnost povolit true toolTip text zobrazit bez ohledu na to, zda formulář je aktivní. A konečně příklad přidruží text popisu k dvěma ovládacím prvkům ve formuláři a Button a CheckBox. Příklad kódu vyžaduje, aby metoda definovaná v příkladu byla umístěna uvnitř Form , který obsahuje Button ovládací prvek pojmenovaný button1 a ovládací prvek pojmenovaný CheckBoxcheckBox1, a že metoda je volána z konstruktoru 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

Poznámky

InitialDelay Pomocí vlastnosti můžete zkrátit nebo prodloužit dobu ToolTip čekání před zobrazením okna Popis. Pokud je hodnota InitialDelay vlastnosti nastavena na hodnotu, která je příliš dlouhá v době trvání, uživatel vaší aplikace nemusí vědět, že vaše aplikace poskytuje nápovědu tooltip. Pomocí této vlastnosti můžete zajistit, aby se uživateli zobrazovaly popisy tlačítek, a to zkrácením zadaného času.

Hodnota této vlastnosti nesmí překročit 32767.

Pokud chcete mít konzistentní způsob zpoždění pro okna popisů AutomaticDelay tlačítek, můžete vlastnost nastavit. Vlastnost AutomaticDelay nastaví AutoPopDelayvlastnost , ReshowDelaya InitialDelay vlastnosti na počáteční hodnoty na základě jedné časové hodnoty. Pokaždé, AutomaticDelay když je vlastnost nastavena, InitialDelay je vlastnost nastavena na stejnou hodnotu jako AutomaticDelay vlastnost. AutomaticDelay Jakmile je vlastnost nastavena, můžete ji nezávisle nastavit InitialDelay a přepíše výchozí hodnotu.

Platí pro

Viz také