Skip to content

Instantly share code, notes, and snippets.

@hminaya
Last active May 3, 2017 23:41
Show Gist options
  • Save hminaya/0c57fbe1d8503a3c39599bd616273c83 to your computer and use it in GitHub Desktop.
Save hminaya/0c57fbe1d8503a3c39599bd616273c83 to your computer and use it in GitHub Desktop.
PRISM - Navigation Service
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