Skip to content

Commit 7e17aa3

Browse files
authored
Undo breaking change in #121
1 parent 1774a51 commit 7e17aa3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/WinUIEx/WindowEx.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,15 @@ public Icon? TaskBarIcon
146146
}
147147
}
148148

149+
/// <summary>
150+
/// Gets or sets the window title.
151+
/// </summary>
152+
public new string Title // Old Workaround for https://github.com/microsoft/microsoft-ui-xaml/issues/3689. Needs to stay for binary compat
153+
{
154+
get => base.Title;
155+
set => base.Title = value;
156+
}
157+
149158
/// <summary>
150159
/// Gets or sets a unique ID used for saving and restoring window size and position
151160
/// across sessions.

0 commit comments

Comments
 (0)