Comment : naviguer vers une page
Cet exemple illustre plusieurs moyens de naviguer vers une page à partir de NavigationWindow.
Exemple
NavigationWindow peut naviguer vers une page en utilisant l'un des éléments suivants :
' Navigate to URI using the Source property
Me.Source = New Uri("HomePage.xaml", UriKind.Relative)
' Navigate to URI using the Navigate method
Me.Navigate(New Uri("HomePage.xaml", UriKind.Relative))
' Navigate to object using the Navigate method
Me.Navigate(New HomePage())
// Navigate to URI using the Source property
this.Source = new Uri("HomePage.xaml", UriKind.Relative);
// Navigate to URI using the Navigate method
this.Navigate(new Uri("HomePage.xaml", UriKind.Relative));
// Navigate to object using the Navigate method
this.Navigate(new HomePage());
Remarque |
---|
Uniform resource identifiers (URIs) peut être absolu ou relatif.Pour plus d'informations, consultez URI à en-tête pack dans WPF. |