I have a WPF MVVM application using strongly-typed DataTemplates to represent the views for my view models. These DataTemplates are in resource dictionaries and automatically link up to the view models - standard stuff.
I want to fit Prism navigation to my app, but the navigation methods require a Uri for the view, which isn't part of this particular style of MVVM.
Can a region (on a ContentControl) simply navigate to a new view-model only?
Does Prism for WPF support this kind of view-less implementation
Thanks