WPF MVVM navigate views

Firstly, you don’t need any of those toolkits/frameworks to implement MVVM. It can be as simple as this… let’s assume that we have a MainViewModel, and PersonViewModel and a CompanyViewModel, each with their own related view and each extending an abstract base class BaseViewModel. In BaseViewModel, we can add common properties and/or ICommand instances and … Read more