Estoy intentando añadir un modelo de vista a la COI, pero no se le da mucha documentación sobre el tema por los desarrolladores del proyecto. He añadido el código siguiente a la App.xaml:WPF Magellan modelo de vista COI
viewModelFactory.Register("ProfileCreateViewModel",() => new ProfileCreateView(),() => new ProfileCreateViewModel());
viewModelFactory.Register("ProfileEditViewModel",() => new ProfileEditView(),() => new ProfileEditViewModel(new Profile()));
viewModelFactory.Register("ProfileDeleteViewModel",() => new ProfileDeleteView(),() => new ProfileDeleteViewModel(new Profile()));
¿Cómo se resuelven estos ViewModels en los controladores?
Sírvanse proporcionar orientación, o cualquier enlace o artículos.
Gracias de antemano.