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.

+2


a source to share


3 answers


You may be interested in the WPF Application Framework (WAF) Sample ViewModel Application .



+3


a source


My best source is here . This is the place that got me started on my MVVM journey. Complete working examples and solutions available.



+1


a source


0


a source







All Articles