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.

Form::Owner Property

 

Gets or sets the form that owns this form.

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

public:
[BrowsableAttribute(false)]
property Form^ Owner {
	Form^ get();
	void set(Form^ value);
}

Property Value

Type: System.Windows.Forms::Form^

A Form that represents the form that is the owner of this form.

Exception Condition
Exception

A top-level window cannot have an owner.

To make a form owned by another form, assign its Owner property a reference to the form that will be the owner.

When a form is owned by another form, it is closed or hidden with the owner form. For example, consider a form named Form2 that is owned by a form named Form1. If Form1 is closed or minimized, Form2 is also closed or hidden.Owned forms are also never displayed behind their owner form. You can use owned forms for windows such as find and replace windows, which should not disappear when the owner form is selected. To determine the forms that are owned by a parent form, use the OwnedForms property.

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