/Visual Studio 2008/CSWPFNavigationUsage/FramePage.xaml

# · XAML · 12 lines · 12 code · 0 blank · 0 comment · 0 complexity · 4869b4477f658aa40eeae58068c2a43f MD5 · raw file

  1. <Page x:Class="CSWPFNavigationUsage.FrameUsage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="FrameUsage">
  5. <StackPanel>
  6. <TextBlock Text="Hello, Page with a Frame!" FontSize="20"/>
  7. <Frame
  8. Source="MainPage.xaml"
  9. JournalOwnership="OwnsJournal"
  10. NavigationUIVisibility="Automatic" />
  11. </StackPanel>
  12. </Page>