diff --git a/src/Avalonia.Controls/Window.cs b/src/Avalonia.Controls/Window.cs
index 6c3517af62..e40e114769 100644
--- a/src/Avalonia.Controls/Window.cs
+++ b/src/Avalonia.Controls/Window.cs
@@ -371,6 +371,9 @@ namespace Avalonia.Controls
///
/// Shows the window.
///
+ ///
+ /// The window has already been closed.
+ ///
public override void Show()
{
if (PlatformImpl == null)
@@ -402,6 +405,9 @@ namespace Avalonia.Controls
/// Shows the window as a dialog.
///
/// The dialog's owner window.
+ ///
+ /// The window has already been closed.
+ ///
///
/// A task that can be used to track the lifetime of the dialog.
///