单击超链接时出现问题。 Page1应该在WPF窗口的frame1中加载。
答案 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);