Partilhar via


Como: Navegar para uma página

Este exemplo ilustra várias maneiras em que uma página pode ser acessada de uma NavigationWindow.

Exemplo

É possível para uma NavigationWindow dar acesso a uma página usando um destes procedimentos:

// 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());
ObservaçãoObservação:

Uniform resource identifiers (URIs) podem ser absolutos ou relativos. Para obter mais informações, consulte URIs de Pacotes no Windows Presentation Foundation.

Consulte também

Referência

Frame

Page

NavigationService