Silverlight 5中的Response.Redirect等价物是什么?

时间:2014-11-29 12:37:21

标签: silverlight

如何在Mysilverlight项目中转到另一个页面。 silverlight中的response.redirect是什么?

1 个答案:

答案 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 - 您无法在应用程序内部导航。