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 命名空间。

4

2 回答 2

3

尝试

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

于 2012-04-24T10:51:27.117 回答
0

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

于 2013-02-20T11:37:48.773 回答