I am new to Prism and I am trying to determine a best practice for deactivating a view in a Prism 2 application -- when a user clicks a button on the view I want to deactivate the view. The view is executing a command when the button is clicked.
The view model is receiving the command but the viewmodel does not have a reference to the regionmanager.
Should the view model know about the region manager? And even if the viewmodel had a reference to it, it needs the view instance to pass to the deactive method on the containing region.
I am using the MVVM pattern for the app.
any advice would be great Michael