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 use Event Aggregation. Any menu item or other element that should lead to navigation in the program will publish the event, and the module responsible for opening the view represented by the published event will do so. This works fine, but I have the feeling that this is not the best way to handle navigation with Prism. It?
source
share