diff --git a/src/WinUIEx/WindowEx.cs b/src/WinUIEx/WindowEx.cs index 6e7a6a2..f5c9e03 100644 --- a/src/WinUIEx/WindowEx.cs +++ b/src/WinUIEx/WindowEx.cs @@ -146,6 +146,15 @@ public Icon? TaskBarIcon } } + /// + /// Gets or sets the window title. + /// + public new string Title // Old Workaround for https://github.com/microsoft/microsoft-ui-xaml/issues/3689. Needs to stay for binary compat + { + get => base.Title; + set => base.Title = value; + } + /// /// Gets or sets a unique ID used for saving and restoring window size and position /// across sessions.