从一个xaml页面导航到silverlight 4中的另一个xaml页面?

时间:2012-04-24 10:48:29

标签: c# silverlight xaml silverlight-4.0

我是银光的新手。我想从登录页面转到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名称空间。

2 个答案:

答案 0 :(得分:3)

尝试

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

答案 1 :(得分:0)

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