如何在Mysilverlight项目中转到另一个页面。 silverlight中的response.redirect是什么?
答案 0 :(得分:0)
您可以使用NavigationService.Navigate
加载其他页面:
public partial class Page1 : Page
{
public Page1()
{
InitializeComponent();
Loaded += Page1_Loaded;
}
private void Page1_Loaded(object sender, RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("SomeUserControl.xaml", UriKind.Relative));
}
}
请注意" NavigationService"是Page
类的成员。 You can only navigate from within the context of a page or frame - 您无法在应用程序内部导航。