Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 4
Form Class
Form Properties
 Owner Property
Collapse All/Expand All Collapse All
.NET Framework Class Library
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)
Visual Basic
<BrowsableAttribute(False)> _
Public Property Owner As Form
C#
[BrowsableAttribute(false)]
public Form Owner { get; set; }
Visual C++
[BrowsableAttribute(false)]
public:
property Form^ Owner {
    Form^ get ();
    void set (Form^ value);
}
F#
[<BrowsableAttribute(false)>]
member Owner : Form with get, set

Property Value

Type: System.Windows.Forms..::.Form
A Form that represents the form that is the owner of this form.
ExceptionCondition
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

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
QUESTION -- why don't you always have Example Code on everything?      David Blaine Fullerton   |   Edit   |   Show History
I'd like to try this method to solve my problem of communicating between
two forms, but there is no example code. Why don't you have example
code on every page? I don't understand that.

Thanks.
Tags What's this?: Add a tag
Flag as ContentBug
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker