I have a parent View that is xaml-binded to a ViewModel (the viewmodel is declared in the xaml).
This parent view can then display a child View (via NavigationService, aka navigation:Frame).
The parent view never goes out of scope, but I want the new child View to share the parent's ViewModel.
How can i do this? Because by declaring the same viewmodel in the child View's xaml would mean the child view gets it's own viewmodel instance (i.e. it is not the same viewmodel instance as it's parent view).
Thanks!