I want to create a view that will contain the entered view in the area (both will have their own ViewModels).
The first view will contain some action controls (new, save, delete, download buttons) that will βexecuteβ the second view, which will contain some field controls (TextBoxes for user input).
The first presentation (and its presentation model) cannot be the real (final) type of presentation that is in it, because this type can change (for example: customer fields, product fields, user fields).
Question: how can I achieve this using MVVM correctly?
source share