2011-08-15 241 views
-1

我有三個XAML頁面的Page1.xaml,page2.xaml和page3.xaml,Silverlight頁面導航?

  1. 如何定位在Button1的Click事件的Page1.xaml到Page2.xaml?
  2. 如何打開Page3.xaml作爲button2上的彈出窗口單擊page1.xaml的事件?

我看到了多個答案,但無法找到任何確切的解決方案,這就是爲什麼我在這裏試過。

回答

0

我在這裏使用intersoft控制,但同樣的原則applys的標準按鈕

Intersoft:UXNavigationButton 
     Content="View Error Log" 
     NavigateUri="/ServerSideOperation/ErrorLog" 

您的代碼看起來是這樣的:

Button Content="Go to Page 2" NavigateUri="/Page2" 

對於彈出,你將需要使用兒童窗口。 Google for Childwindow並檢查示例。