|
|
@@ -9,7 +9,7 @@
|
|
|
xmlns:data="using:Breda_Tour.Data"
|
|
|
mc:Ignorable="d">
|
|
|
|
|
|
- <Grid Background="White">
|
|
|
+ <Grid>
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
@@ -19,7 +19,7 @@
|
|
|
|
|
|
<c:DefaultTopBar Grid.Row="0" x:Uid="RouteExamplePagetxtRouteVoorbeeld" Header="Routevoorbeeld"/>
|
|
|
|
|
|
- <StackPanel Grid.Row="1">
|
|
|
+ <StackPanel Background="White" Grid.Row="1">
|
|
|
<StackPanel Orientation="Horizontal" Margin="10,10,0,0">
|
|
|
<TextBlock x:Uid="RouteExamplePagetxtRouteInformatie" Text="Route informatie" FontSize="16"/>
|
|
|
<Button x:Name="StartButton" Visibility="Collapsed" Click="Button_Click" Margin="120,0,0,0" >
|
|
|
@@ -32,14 +32,14 @@
|
|
|
<TextBlock x:Name="WaypointsBlok" FontSize="16" Margin="10,0,0,10"/>
|
|
|
|
|
|
</StackPanel>
|
|
|
- <StackPanel Grid.Row="2">
|
|
|
+ <StackPanel Background="White" Grid.Row="2">
|
|
|
<Image Source="ms-appx:///Assets/Map.png" Width="360" />
|
|
|
</StackPanel>
|
|
|
|
|
|
- <ListView Grid.Row="3" Margin="10,0,0,0" x:Name="Waypoints" ItemsSource="{x:Bind route.Waypoints}" IsItemClickEnabled="True" ItemClick="Waypoints_OnItemClick">
|
|
|
+ <ListView Background="White" Grid.Row="3" x:Name="Waypoints" ItemsSource="{x:Bind route.Waypoints}" IsItemClickEnabled="True" ItemClick="Waypoints_OnItemClick">
|
|
|
<ListView.ItemContainerStyle>
|
|
|
<Style TargetType="ListViewItem">
|
|
|
- <Setter Property="Padding" Value="0"/>
|
|
|
+ <Setter Property="Padding" Value="10,0,0,0"/>
|
|
|
<Setter Property="Margin" Value="0"/>
|
|
|
</Style>
|
|
|
</ListView.ItemContainerStyle>
|