RouteSelectPage.xaml 842 B

123456789101112131415161718192021
  1. <Page
  2. x:Class="Breda_Tour.RouteSelectScreen.RouteSelectPage"
  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.RouteSelectScreen"
  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="*"/>
  15. </Grid.RowDefinitions>
  16. <c:DefaultTopBar x:Uid="RouteSelectPagetxtSelectRoute" Header="Route Selecteren"/>
  17. <c:DefaultPivotControl x:Name="DefaultPivot" Grid.Row="1"/>
  18. </Grid>
  19. </Page>