Last active
May 3, 2017 23:41
-
-
Save hminaya/0c57fbe1d8503a3c39599bd616273c83 to your computer and use it in GitHub Desktop.
PRISM - Navigation Service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DestinationPageViewModel | |
{ | |
INavigationService _navigationService; | |
public DestinationPageViewModel(INavigationService navigationService) | |
{ | |
BackCommand = new DelegateCommand(OnBack); | |
_navigationService = navigationService; | |
} | |
void OnNavigate() | |
{ | |
_navigationService.NavigateAsync("DestinationPage"); | |
} | |
void OnBack() | |
{ | |
_navigationService.GoBackAsync(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment