The user may change the size and position of the NavigationWindow
I want to capture the Height, Width, Left, and Right when the user closes the dialog
How can I do that?
NavigationWindow help = new NavigationWindow();
help.Content = new PageHelp2("Fields");
help.Height = 600;
help.Width = 800;
help.ShowDialog();
The purpose is the next time they are shown help to bring it up with the last size and position.
You can capture the moment a window is closing using the
Window.Closing
event orWindow.Closed
event. Be sure to read the remarks for the former, as the event won't always be raised.