You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there's only ever one instance of a window, this would save creating a name for that window class. Suggest adding an additional Register method in WindowPlace, that'd look like:
public void Register<T>(T window) where T : Window
{
Register(window, typeof(T).Name);
}
PS - Thanks for this project. In my limited testing, it works great.
The text was updated successfully, but these errors were encountered:
If there's only ever one instance of a window, this would save creating a name for that window class. Suggest adding an additional Register method in WindowPlace, that'd look like:
PS - Thanks for this project. In my limited testing, it works great.
The text was updated successfully, but these errors were encountered: