| 1234567891011121314151617181920212223 |
- <Page
- x:Class="Breda_Tour.HelpScreen.HelpScreenPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="using:Breda_Tour.HelpScreen"
- xmlns:c="using:Breda_Tour.CustomControls"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="40"/>
- <RowDefinition Height="50"/>
- <RowDefinition Height="*" ScrollViewer.VerticalScrollMode="Enabled"/>
- </Grid.RowDefinitions>
- <c:DefaultTopBar Header="Help" x:Uid="HelpScreenPagetxtHelpScreen"/>
- <c:DefaultPivotControl x:Name="DefaultPivot" Grid.Row="1"/>
- <StackPanel Grid.Row="2" Background="White">
-
- </StackPanel>
- </Grid>
- </Page>
|