| 123456789101112131415161718192021 |
- <Page
- x:Class="Breda_Tour.RouteSelectScreen.RouteSelectPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="using:Breda_Tour.RouteSelectScreen"
- 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="*"/>
- </Grid.RowDefinitions>
- <c:DefaultTopBar x:Uid="RouteSelectPagetxtSelectRoute" Header="Route Selecteren"/>
- <c:DefaultPivotControl x:Name="DefaultPivot" Grid.Row="1"/>
-
- </Grid>
- </Page>
|