I have designed 5 windows and all of them are having tab controls. Is there a better way or other ways to navigate between them ?
I am now doing it like
window1 w = new Window1();
w.Show();
this.Close();
also I am serializing an ApplicationContext class to an xml file which I have created to store all of the information of the application. It will store many object collections inside and each time I navigate to other window I am forwarding the ApplicationContext class to other window.
I am quite new to Windows Presentation Foundation and I can't be sure if this is the correct or/and efficient way to do this.
Any tutorials, e-book advises are appreciated,