I want to access the actual view model currently in use from inside the view (behind the code). In bootstrapper, I have a viewmodel installed perrequest, so I can not use IoC.Get <.. ViewModel> (); (and I do not want to change this behavior).
Basically, I'm looking for the equivalent of GetView from the screen, but then vice versa.
source
share