ToolTip.ReshowDelay 属性

定义

获取或设置指针从一个控件移到另一控件时,必须经过多长时间才会出现后面的工具提示窗口。

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

属性值

Int32

显示后续工具提示窗口所需要的时间(以毫秒为单位)。

示例

下面的代码示例创建类的 ToolTip 实例,并将实例与 Form 在其中创建的实例相关联。 然后,代码初始化延迟属性 AutoPopDelayInitialDelay以及 ReshowDelay。 此外,类的 ToolTip 实例将设置属性 ShowAlwaystrue 允许显示工具提示文本,而不考虑窗体是否处于活动状态。 最后,该示例将工具提示文本与窗体、a Button 和 a 上的两个 CheckBox控件相关联。 代码示例要求在示例中定义的方法位于Form包含Button命名控件和CheckBox命名checkBox1,``button1控件以及该方法从构造函数调用的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

注解

使用该 ReshowDelay 属性,可以缩短或延长在显示上一个工具提示窗口后显示工具提示窗口之前等待的时间 ToolTip 。 首次显示工具提示窗口时,该属性的值 InitialDelay 用于确定在最初显示工具提示窗口之前要应用的延迟。 当当前显示工具提示窗口并且用户将指针移动到显示工具提示窗口的另一个控件时,将使用属性的值,然后显示新控件的工具 ReshowDelay 提示。 仍必须显示上一个控件的工具提示窗口,以便使用属性中指定的 ReshowDelay 延迟;否则 InitialDelay 使用属性值。

如果希望工具提示窗口具有一致的延迟模式,可以设置该 AutomaticDelay 属性。 该AutomaticDelay属性根据单个时间值将和ReshowDelayInitialDelay属性设置为AutoPopDelay初始值。 每次设置属性时 AutomaticDelay ,该 ReshowDelay 属性将设置为属性值的 AutomaticDelay 1/5。 AutomaticDelay设置属性后,可以独立设置ReshowDelay该属性,重写默认值。

适用于

另请参阅