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

时间:2011-09-11 12:02:21

标签: silverlight

我需要去另一个页面或网址。 silverlight中的response.redirect是什么?

1 个答案:

答案 0 :(得分:15)

如果要导航到Silverlight导航应用程序的另一个页面:

NavigationContext.Navigate( new Uri( "/Views/Home.xaml", UriKind.Relative ) );

其中NavigationContext - Page属性

如果您想导航到另一个网址:

System.Windows.Browser.HtmlPage.Window.Navigate(new Uri("http://stackoverflow.com"), "_blank");