ToolTip.InitialDelay 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置工具提示显示之前经过的时间。
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
属性值
工具提示窗口显示之前,指针必须在控件上保持静止的时间期限(以毫秒为单位)。
示例
下面的代码示例创建类的 ToolTip 实例,并将实例与 Form 在其中创建的实例相关联。 然后,代码初始化延迟属性 AutoPopDelay, InitialDelay以及 ReshowDelay。 此外,类的 ToolTip 实例将设置属性 ShowAlways 以 true
允许显示工具提示文本,而不考虑窗体是否处于活动状态。 最后,该示例将工具提示文本与窗体、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
注解
使用该 InitialDelay 属性,可以缩短或延长在显示工具提示窗口之前等待的时间 ToolTip 。 如果属性的值 InitialDelay 设置为持续时间太长的值,则应用程序的用户可能不知道应用程序提供工具提示帮助。 可以使用此属性来确保用户通过缩短指定的时间快速显示工具提示。
此属性的值不能超过 32767。
如果要为工具提示窗口设置一致的延迟模式,可以设置该 AutomaticDelay 属性。 该AutomaticDelay属性根据单个时间值将和ReshowDelayInitialDelay属性设置为AutoPopDelay初始值。 每次设置属性时 AutomaticDelay ,该 InitialDelay 属性都设置为与 AutomaticDelay 属性相同的值。 AutomaticDelay设置属性后,可以独立设置InitialDelay该属性,重写默认值。