What is the best way to handle navigation with PRISM?
- by stiank81
Using Prism - what is the best way to handle navigation in a WPF application? And how do you apply this? Are there any best practices?
In my application I'm currently using Event Aggregation. Any menu item or other item that should result in navigation in the program will publish an event, and the module responsible for opening the view represented by the published event will do so. This works just fine, but I have a feeling this is not the best way to handle navigation with Prism. Is it?