in my Windows Phone application I have following scenario:
- I have two ListBox'es f.e lbx1 and lbx2
- ViewModel loads data to lbx1
- User tap on ListBox, command is fired, ViewModel set visibility of lbx1 to collapsed and lbx2 to visilbe.
Now I want to do following thing: when lbx2 is visible I want to intercept OnBackKeyPress event in My ViewModel so that I can change visibility of lbx1 to visible and lbx2 to collapsed.
Is it even possible with mvvm.light ?