Skip to content

Instantly share code, notes, and snippets.

@hminaya
Created May 3, 2017 23:55
Show Gist options
  • Save hminaya/cefd4e0eb16d4d398b29188ef2c99047 to your computer and use it in GitHub Desktop.
Save hminaya/cefd4e0eb16d4d398b29188ef2c99047 to your computer and use it in GitHub Desktop.
PRISM - INavigationAware
using System.Collections.ObjectModel;
using Prism.Navigation;
namespace Sample.ViewModels
{
public class ScanDashboardViewModel : INavigationAware
{
public ScanDashboardViewModel(INavigationService navigationService)
{
}
public void OnNavigatedFrom(NavigationParameters parameters)
{
}
public void OnNavigatedTo(NavigationParameters parameters)
{
}
public void OnNavigatingTo(NavigationParameters parameters)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment