我是银光新手。我想在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 命名空间。