From df360e164c1159e0052a6345748b2d6096a44eee Mon Sep 17 00:00:00 2001 From: Dan Walmsley Date: Mon, 21 Feb 2022 20:54:02 +0000 Subject: [PATCH] rename property. --- src/Avalonia.Controls/Window.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Avalonia.Controls/Window.cs b/src/Avalonia.Controls/Window.cs index 4c4f681917..2e31e1095d 100644 --- a/src/Avalonia.Controls/Window.cs +++ b/src/Avalonia.Controls/Window.cs @@ -258,7 +258,7 @@ namespace Avalonia.Controls /// /// Gets a collection of child windows owned by this window. /// - public IReadOnlyList ChildWindows => _children.Select(x => x.child).ToList(); + 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.