|
@@ -9,12 +9,27 @@
|
|
|
xmlns:data="using:Breda_Tour.Data"
|
|
xmlns:data="using:Breda_Tour.Data"
|
|
|
mc:Ignorable="d">
|
|
mc:Ignorable="d">
|
|
|
|
|
|
|
|
- <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
|
|
|
+ <Grid>
|
|
|
<c:DefaultTopBar Header="Routevoorbeeld" Margin="0,-300,0,300"/>
|
|
<c:DefaultTopBar Header="Routevoorbeeld" Margin="0,-300,0,300"/>
|
|
|
<TextBlock Text="Routeinformatie" FontSize="16" Margin="17,45,0,-23"/>
|
|
<TextBlock Text="Routeinformatie" FontSize="16" Margin="17,45,0,-23"/>
|
|
|
-
|
|
|
|
|
<TextBlock Text="Tijdsduur: " FontSize="16" Margin="17,80,0,-25"/>
|
|
<TextBlock Text="Tijdsduur: " FontSize="16" Margin="17,80,0,-25"/>
|
|
|
<TextBlock Text="Loopafstand: " FontSize="16" Margin="17,95,0,-25"/>
|
|
<TextBlock Text="Loopafstand: " FontSize="16" Margin="17,95,0,-25"/>
|
|
|
- <TextBlock Text="{x:Bind Waypoints}" FontSize="16" Margin="17,110,0,-25"/>
|
|
|
|
|
|
|
+ <TextBlock Text="{x:Bind WaypointsText}" FontSize="16" Margin="17,110,0,-25"/>
|
|
|
|
|
+ <Button Click="Button_Click" Margin="200,139,0,489"/>
|
|
|
|
|
+ <ListView x:Name="Waypoints" ItemsSource="{x:Bind route.Waypoints}" Margin="0,328,0,0">
|
|
|
|
|
+ <ListView.ItemContainerStyle>
|
|
|
|
|
+ <Style TargetType="ListViewItem">
|
|
|
|
|
+ <Setter Property="Padding" Value="0"/>
|
|
|
|
|
+ <Setter Property="Margin" Value="0"/>
|
|
|
|
|
+ </Style>
|
|
|
|
|
+ </ListView.ItemContainerStyle>
|
|
|
|
|
+ <ListView.ItemTemplate>
|
|
|
|
|
+ <DataTemplate x:DataType="data:Waypoint">
|
|
|
|
|
+ <StackPanel>
|
|
|
|
|
+ <TextBlock Text="{Binding Title}" Margin="10,0,0,0"/>
|
|
|
|
|
+ </StackPanel>
|
|
|
|
|
+ </DataTemplate>
|
|
|
|
|
+ </ListView.ItemTemplate>
|
|
|
|
|
+ </ListView>
|
|
|
</Grid>
|
|
</Grid>
|
|
|
</Page>
|
|
</Page>
|