5
我需要去另一個頁面或網址。 Silverlight中的response.redirect是什麼?什麼是Silverlight中的Response.Redirect等效項?
我需要去另一個頁面或網址。 Silverlight中的response.redirect是什麼?什麼是Silverlight中的Response.Redirect等效項?
如果您想瀏覽到的Silverlight導航應用程序的另一頁:
NavigationContext.Navigate(new Uri("/Views/Home.xaml", UriKind.Relative));
其中NavigationContext - Page財產
如果你想轉到另一個網址:
有沒有這樣的方法 - NavigationContext.Navigate – marko
@marko:它不是靜態方法。請查看我提供的頁面鏈接:NavigationContext - 是Page類的屬性。另外,你可以從Frame實例中獲得NavigationContext。提醒一下,Silverlight導航應用程序。 –