I would like your opinion on how to design a custom dialog following the Prism framework with 2 views.
So, the idea is: When the user double clicks an item (Contact item) a popup view is displayed (this is the "Read only" view) where the user can read the contact details but cannot edit all of them (only a few properties of the contact can be edited). In this form, there is a button that switches to the "Edit" mode and then a "Edit" view is displayed in the same popup window (I don´t want to open a new window).
In the edit view, there are two buttons (one for save changes and one to cancel interaction). After saving or cancelling, the "Read only" view is displayed again.
Have you ever done this?