xml serialization - WPF Navigation Between Windows -
I have created 5 windows and all of them are tab controls, is there a better way to navigate between them or else Are the ways
Now I am doing this
window1 w = new Window1 (); W.Show (); This.Close ();
I am serializing an application.context class in an XML file that I have created to store all the information. I will store many object collections in and every Once I navigate to the second window, I am forwarding the application content class to another window.
I am quite new to the Windows Presentation Foundation and I can not believe that this is the right and / or efficient way to do this.
Any tutorial, e-book is appreciated,
McDonald Book really understand Chapter 3 and Chapter 4 to understand the WPF application model and window interaction model.
ApplicationContact can be stored in your application class, which will know about all your windows and will display any window that you want to show.
UPD
There is also "WP WP Pro" in C # 2010 (the author is similar), but it is weird that it is not listed in the appress Website.
Comments
Post a Comment