DrawToolTipEventArgs::AssociatedWindow Property

 

Gets the window to which this ToolTip is bound.

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

public:
property IWin32Window^ AssociatedWindow {
	IWin32Window^ get();
}

Property Value

Type: System.Windows.Forms::IWin32Window^

The window which owns the ToolTip.

When a window is owned by another window, the owned window is minimized and closed with the owner window. Owned windows are also never displayed behind their owner form. Here the ToolTip is owned by the native Win32 window represented by the AssociatedWindow property.

The following code example demonstrates the use of this member. In the example, an event handler reports on the occurrence of the ToolTip::Draw event. This report helps you to learn when the event occurs and can assist you in debugging.

To run the example code, paste it into a project that contains an instance of type ToolTip named ToolTip1. Then ensure that the event handler is associated with the ToolTip::Draw event.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: