Example #1
0
 private void PhoneApplicationPage_BackKeyPress(object sender, System.ComponentModel.CancelEventArgs e)
 {
     if (_vm.CanPrevious)
     {
         _vm.PreviousStep();
         e.Cancel = true;
     }
 }