diff --git a/src/Avalonia.Controls/Window.cs b/src/Avalonia.Controls/Window.cs
index 4c94b725ea3..5f2c7bc7bdd 100644
--- a/src/Avalonia.Controls/Window.cs
+++ b/src/Avalonia.Controls/Window.cs
@@ -255,6 +255,11 @@ public Window(IWindowImpl impl)
[CanBeNull]
public new IWindowImpl PlatformImpl => (IWindowImpl)base.PlatformImpl;
+ ///
+ /// Gets a collection of child windows owned by this window.
+ ///
+ public IReadOnlyList OwnedWindows => _children.Select(x => x.child).ToList();
+
///
/// Gets or sets a value indicating how the window will size itself to fit its content.
///