ToolTip.InitialDelay Свойство

Определение

Возвращает или задает интервал времени перед появлением всплывающей подсказки.

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

Значение свойства

Int32

Интервал времени в миллисекундах, в течение которого указатель мыши должен оставаться в границах элемента управления, прежде чем появится окно всплывающей подсказки.

Примеры

В следующем примере кода создается экземпляр ToolTip класса и связывается экземпляр с Form созданным экземпляром. Затем код инициализирует свойства AutoPopDelayInitialDelayзадержки и ReshowDelay. Кроме того, экземпляр ToolTip класса задает ShowAlways свойство для true включения отображения текста подсказки независимо от того, активна ли форма. Наконец, в примере текст подсказки связывается с двумя элементами управления в форме, а Button и т. д CheckBox. В примере кода требуется, чтобы метод, определенный в этом примере, находился в элементеForm, содержащем Button элемент управления с именем button1 и именованном checkBox1, CheckBox элементе управления, и что метод вызывается из конструктора 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

Комментарии

InitialDelay С помощью свойства можно сократить или продлить время ToolTip ожидания перед отображением окна подсказки. Если для свойства InitialDelay задано слишком длинное значение, пользователь приложения может не знать, что приложение предоставляет справку подсказки. Это свойство можно использовать для быстрого отображения всплывающих подсказок, сокращая указанное время.

Значение этого свойства не может превышать 32767.

Если вы хотите иметь согласованный шаблон задержки для окон всплывающих подсказок, можно задать AutomaticDelay это свойство. Свойство AutomaticDelay присваивает AutoPopDelayсвойствам и ReshowDelayInitialDelay свойства начальным значениям на основе одного значения времени. Каждый раз, AutomaticDelay когда свойство задается, свойство устанавливается таким же значением, InitialDelay как и AutomaticDelay свойство. AutomaticDelay После установки свойства можно самостоятельно задать InitialDelay свойство, переопределив значение по умолчанию.

Применяется к

См. также раздел