ToolTip 构造函数

定义

初始化 ToolTip 类的新实例。

重载

ToolTip()

初始化没有指定容器的 ToolTip 的新实例。

ToolTip(IContainer)

使用指定的容器初始化 ToolTip 类的新实例。

ToolTip()

初始化没有指定容器的 ToolTip 的新实例。

public:
 ToolTip();
public ToolTip ();
Public Sub New ()

示例

下面的代码示例创建类的 ToolTip 实例。 然后,代码初始化延迟属性 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

注解

此构造函数创建不与任何容器关联的 ToolTip 实例。

另请参阅

适用于

ToolTip(IContainer)

使用指定的容器初始化 ToolTip 类的新实例。

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)

参数

cont
IContainer

IContainer 表示 ToolTip 的容器。

注解

构造ToolTip函数使你能够与任何Container对象相关联ToolTip。 通过以这种方式关联ToolTip,可以将工具提示的生存期控制权移交给工具提示。Container 如果在应用程序中使用多个组件,并且希望同时释放所有这些组件,这非常有用。 For example, if you associate a ToolTip, an ImageList, and a Timer with a Container, calling Dispose on the Container will also force disposal of all of these components.

另请参阅

适用于