views:

125

answers:

3

Hello! In my WPF project i want to have only one Window - MainWindow and UserControls as working part. I have some little different applications in one, and want to make navigation on top of my MainWindow as buttons. And little applications as UserControl. In MainWindow - grid with Big Empty Zone - which use to keep and run work. But, i want to navigate to other userControl from another. (probably do not understand :()

How organize architecture WPF project that: one main window and many usercontrols which places in mainwindow and replace each other in turn. and there is the possibility of navigating from another usercontrol to another.

May be it's MVVM, but i don't understand how this pattern can help me.

A: 

My best source is here. Its the place that got me started on my journey to MVVM. Full working examples and workable solutions.

Tri Q
A: 

You might be interested in the ViewModel sample application of the WPF Application Framework (WAF) project.

jbe