HelpScreenPage.xaml 933 B

1234567891011121314151617181920212223
  1. <Page
  2. x:Class="Breda_Tour.HelpScreen.HelpScreenPage"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:Breda_Tour.HelpScreen"
  6. xmlns:c="using:Breda_Tour.CustomControls"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. mc:Ignorable="d">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="40"/>
  13. <RowDefinition Height="50"/>
  14. <RowDefinition Height="*" ScrollViewer.VerticalScrollMode="Enabled"/>
  15. </Grid.RowDefinitions>
  16. <c:DefaultTopBar Header="Help" x:Uid="HelpScreenPagetxtHelpScreen"/>
  17. <c:DefaultPivotControl x:Name="DefaultPivot" Grid.Row="1"/>
  18. <StackPanel Grid.Row="2" Background="White">
  19. </StackPanel>
  20. </Grid>
  21. </Page>