Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ToolTip Constructor (IContainer^)

 

Initializes a new instance of the ToolTip class with a specified container.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
ToolTip(
	IContainer^ cont
)

Parameters

cont
Type: System.ComponentModel::IContainer^

An IContainer that represents the container of the ToolTip.

The ToolTip constructor enables you to associate a ToolTip with any Container object. By associating the ToolTip in this manner, you hand over control of the lifetime of the ToolTip to the Container. This can be useful if you use several components in your application, and want to dispose of all of them at the same time. 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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft