单击超链接时如何在WPF窗口的框架中加载页面

时间:2009-08-29 11:28:36

标签: wpf hyperlink

单击超链接时出现问题。 Page1应该在WPF窗口的frame1中加载。

1 个答案:

答案 0 :(得分:1)

我从Adam Nathan的书中抓住了这个例子:

<TextBlock>
Click <Hyperlink NavigateUri="page1.xaml">here</Hyperlink> to view the page.
</TextBlock>

您也可以在代码中执行此操作:

this.NavigationService.Content = nextPage;

this.NavigationService.Source = new Uri("page1.xaml", UriKind.Relative);