I'm working on a WPF project using Prism and MVVM, I'm new using this tools. I've been creating modules and testing it and everything works fine. To test it in the Bootstrapper I add each module using AddModule method of the ModuleCatalog, but now I need to put all my modules together and go from one module to another.
Program starts and load Module_1, when the user finish all in this module press a complete button and the program shows Module_2 and so on...
What I need to do to change from one module to another after an user action?
Thank you in advance.