1
我想使用超鏈接控件顯示框架中的頁面。但它不起作用。wpf中的超鏈接和目標名稱
代碼:
<Window x:Class="WPFNavigation.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="400" Width="500">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0">
<TextBlock>
<Hyperlink NavigateUri="ImagePage.xaml">Image</Hyperlink>
<LineBreak></LineBreak>
<Hyperlink NavigateUri="Layouts.xaml" TargetName="targetFrame">Layouts</Hyperlink>
</TextBlock>
</StackPanel>
<Frame Name="targetFrame" Source="MainPage.xaml" Grid.Column="1"></Frame>
</Grid>
</Window>
你從哪裏得到這些信息?它在某處被引用了嗎? – Bryan 2011-10-11 15:48:33
「頁面」和「超鏈接」是構建在「WPF」中的「導航框架」的一部分。這是一個初學者:http://msdn.microsoft.com/en-us/library/ms750478.aspx – decyclone 2011-10-16 10:32:59