I am trying to implement one of the screen in my project using RadWindow, and I wanted to do it as a singleton within the entire application. This RadWindow will be shown as modal from time to time. I know that using wpf windows, doing this will give you an invalidoperationexception:
win.ShowDialog();
win.Close();
win.ShowDialog();
I see that RadWindow is not derived from Window, so my question is, is it safe for me to do show or reopen the RadWindow even after it has been closed?
win.ShowDialog();
win.Close();
win.ShowDialog();
I see that RadWindow is not derived from Window, so my question is, is it safe for me to do show or reopen the RadWindow even after it has been closed?