2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 WindowTitle="SDK Viewer"
9 <TextBlock FontSize="20" Background="SteelBlue" Foreground="White" Padding="20,20,20,20">SDK Viewer</TextBlock>
10 <TextBlock Margin="20,10,20,20">
11 <Hyperlink NavigateUri="HomePage.xaml">Home</Hyperlink>
14 <!-- Uses Own Navigation History -->
15 <TextBlock Margin="20,0,20,0" Background="DarkGray" Foreground="White">
16 <TextBlock FontWeight="DemiBold">Uses Own Navigation History</TextBlock>
18 <TextBlock>Navigate using Frame Navigation UI</TextBlock>
20 <Frame Background="WhiteSmoke" Margin="20,0,20,20" Source="SDKFramePage.xaml" NavigationUIVisibility="Visible" JournalOwnership="OwnsJournal" />
22 <!-- Uses Parent Navigation History -->
23 <TextBlock Margin="20,0,20,0" Background="DarkGray" Foreground="White">
24 <TextBlock FontWeight="DemiBold">Uses Parent's Navigation History</TextBlock>
26 <TextBlock>Navigate using Browser Navigation UI</TextBlock>
28 <Frame Background="WhiteSmoke" Margin="20,0,20,5" Source="SDKFramePage.xaml" JournalOwnership="UsesParentJournal" />