I am building an WPF Prism MVVM application.
This application will contain a lot of CRUD windows.
I want to optimize the features (and reduce the amount of produced code) of that windows.
I have already used an approach in which I created a "master page" that had the default features and contained a reserved region for "injecting" different subcontrols that could belong to specific entities. I am trying to learn how to do this in WPF in this question.
But what I want to know is: what's the pattern for accomplishing this using WPF and MVVM (or control)?