Skip to content

Commit

Permalink
Undo breaking change in #121
Browse files Browse the repository at this point in the history
  • Loading branch information
dotMorten authored May 10, 2023
1 parent 1774a51 commit 7e17aa3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/WinUIEx/WindowEx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,15 @@ public Icon? TaskBarIcon
}
}

/// <summary>
/// Gets or sets the window title.
/// </summary>
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;
}

/// <summary>
/// Gets or sets a unique ID used for saving and restoring window size and position
/// across sessions.
Expand Down

0 comments on commit 7e17aa3

Please sign in to comment.