RouteExample.xaml 980 B

1234567891011121314151617181920
  1. <Page
  2. x:Class="Breda_Tour.RouteSelectScreen.RouteExample"
  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:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:c="using:Breda_Tour.CustomControls"
  9. xmlns:data="using:Breda_Tour.Data"
  10. mc:Ignorable="d">
  11. <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
  12. <c:DefaultTopBar Header="Routevoorbeeld" Margin="0,-300,0,300"/>
  13. <TextBlock Text="Routeinformatie" FontSize="16" Margin="17,45,0,-23"/>
  14. <TextBlock Text="Tijdsduur: " FontSize="16" Margin="17,80,0,-25"/>
  15. <TextBlock Text="Loopafstand: " FontSize="16" Margin="17,95,0,-25"/>
  16. <TextBlock Text="{Binding Waypoints}" FontSize="16" Margin="17,110,0,-25"/>
  17. </Grid>
  18. </Page>