-
-
Save JoeM-RP/50748009771dcf4ad4f887d64d598d40 to your computer and use it in GitHub Desktop.
This file contains 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
/* | |
* Define Methods | |
*/ | |
// Do something cool here when we naviagte away from the ViewModel | |
public abstract void OnNavigatedFrom(INavigationParameters parameters); | |
// Do something cool here when we have finished navigating to the ViewModel | |
public abstract void OnNavigatedTo(INavigationParameters parameters); | |
// Do something cool here when we start navigating to the ViewModel | |
public abstract void OnNavigatingTo(INavigationParameters parameters); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment