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.

Control::Disposing Property

 

Gets a value indicating whether the base Control class is in the process of disposing.

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

public:
[BrowsableAttribute(false)]
property bool Disposing {
	bool get();
}

Property Value

Type: System::Boolean

true if the base Control class is in the process of disposing; otherwise, false.

When this property returns true, the baseControl class is in the process of disposing. After the control is disposed of, it can no longer be referenced as a valid Windows control. Even though the instance of a control is disposed of, it is still maintained in memory until it is removed from memory through garbage collection. When a control is disposed of, you cannot call its RecreateHandle method.

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