在 Silverlight 4 中从一个 XAML 页面导航到另一个 XAML 页面

本文关键字:XAML 导航 页面 另一个 一个 Silverlight | 更新日期: 2023-09-27 18:32:01

我是Silverlight的新手。我想在 silverlight 4 中从登录页面转到另一个页面。如何在 silverlighr 4 中做到这一点。C#中的代码是什么?

我已经写了登录按钮点击

NavigationService n = NavigationService.GetNavigationService(sender as Button);
n.Navigate(new Uri("SelectionPage.xaml", UriKind.Relative));

但是我收到以下错误:

System.Windows.Navigation.NavigationService' does not contain a definition
for 'GetNavigationService'

我正在使用System.windows.navigation命名空间。

在 Silverlight 4 中从一个 XAML 页面导航到另一个 XAML 页面

尝试

this.NavigationService.Navigate(new Uri("SelectionPage.xaml", UriKind.Relative));

我使用您的代码来定义下面的方式,但仍然没有调用该页面 this.NavigationService.Navigate(new Uri("Parchase_order_main.xaml", UriKind.Relative));