.NET Framework Class Library
Window.OwnedWindows Property
Gets a collection of windows for which this window is the owner.
Assembly: PresentationFramework (in PresentationFramework.dll)
Syntax
Visual Basic
Public ReadOnly Property OwnedWindows As WindowCollection Get
C#
public WindowCollection OwnedWindows { get; }
Visual C++
public: property WindowCollection^ OwnedWindows { WindowCollection^ get (); }
F#
member OwnedWindows : WindowCollection
Property Value
Type: System.Windows.WindowCollectionA WindowCollection that contains references to the windows for which this window is the owner.
Remarks
An owned window is one whose Owner property is set with a reference to another window, which is known as the owner window. To find all the windows that an owner window owns, you can enumerate WindowCollection that is returned by the OwnedWindows property.
Examples
The following example shows how to enumerate OwnedWindows.
Visual Basic
For Each ownedWindow As Window In Me.OwnedWindows Console.WriteLine(ownedWindow.Title) Next ownedWindow
C#
foreach (Window ownedWindow in this.OwnedWindows) { Console.WriteLine(ownedWindow.Title); }
Version Information
.NET Framework
Supported in: 4, 3.5, 3.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, 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.
See Also