Hi,
I'll start off with what I want so it may be simpler to understand:
- I have a Page (Master.xaml) that has has a listbox of PersonViewModel.
- When the user selects a PersonViewModel from the listbox, I want to Navigate to a details (Details.xaml) page of the selected PersonViewModel.
- The details page does some extra heavy lifting that I only want done once the user navigates to the page. (I don't want too much stuff loaded in each PersonViewModel of the master listbox)
So how do you guys handle master/detail scenarios with navigation while maintaining "blendability"?
I've been turing in circles for the past week. there seems to be no clean solution for something that should be quite common?