Compartir a través de


Cómo: Navegar hasta una página

En este ejemplo se muestran varias maneras de navegar hasta una página desde un objeto NavigationWindow.

Ejemplo

Es posible navegar desde NavigationWindow a una página mediante uno de los elementos siguientes:

            ' 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());
NotaNota

Los Uniform resource identifiers (URIs) pueden ser relativos o absolutos.Para obtener más información, consulte Empaquetar URI en WPF.

Vea también

Referencia

Frame

Page

NavigationService