2013-09-26 5 views

Répondre

2

Utilisez la méthode Navigate de NavigationService, quelque chose comme ceci:

private void button_Login_Tap(object sender, System.Windows.Input.GestureEventArgs e) 
{ 
    string nav = "/Pages/DestinationPage.xaml?Param1=Value1"; 
    this.NavigationService.Navigate(new Uri(nav, UriKind.Relative)); 
} 
Questions connexes