Skip to content

Instantly share code, notes, and snippets.

@hminaya
Created May 3, 2017 23:50
Show Gist options
  • Save hminaya/666970d33563f978b74bcabb1c2fe6c3 to your computer and use it in GitHub Desktop.
Save hminaya/666970d33563f978b74bcabb1c2fe6c3 to your computer and use it in GitHub Desktop.
PRISM - Navigation Parameters
public void OnNavigatedTo(NavigationParameters parameters)
{
if (parameters.ContainsKey("id"))
{
Resultado = (string)parameters["id"];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment