Silverlight页面导航?

时间:2011-08-15 13:28:57

标签: c# silverlight

我有三个xaml页面page1.xaml,page2.xaml和page3.xaml,

  1. 如何将button1点击事件上的page1.xaml导航到Page2.xaml?
  2. 如何在page1.xaml的button2点击事件上打开Page3.xaml作为弹出窗口?
  3. 我已经看到了多个答案,但无法找到任何确切的解决方案,这就是我在这里尝试的原因。

1 个答案:

答案 0 :(得分:0)

我在这里使用了intersoft控件,但同样的原则适用于标准按钮

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

您的代码看起来像:

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

对于弹出窗口,您需要使用子窗口。 Google for Childwindow并查看示例。