How to organize your WPF architecture project?
In my WPF project I want to have only one window as a work part - MainWindow and UserControls. I have several different applications in one and you want to do the navigation on top of my MainWindow as buttons. And small apps like UserControl. The MainWindow is a grid with a large empty area - which are used to save and launch work. But I want to navigate to another userControl from another. (maybe I don't understand :()
How to organize a WPF project in architecture: one main window and many custom controls that are placed in the mainwindow and replace each other in turn. and there is the possibility of switching from another user control to another.
It might be MVVM, but I don't understand how this pattern can help me.
a source to share
-
http://compositewpf.codeplex.com/Wikipage - I've searched for it in the past and this is the only one I've found so far.
-
How do I create parts of an application in XAML and how do I reuse it?
a source to share