24 lines
1.2 KiB
XML
24 lines
1.2 KiB
XML
<Page
|
|
x:Class="NavCityBreda.Views.RouteView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:NavCityBreda.Views"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
|
|
<RelativePanel Grid.Row="2" Name="RouteListPanel">
|
|
<ListView x:Name="RouteList" ItemsSource="{Binding}" Margin="0,10,0,0" IsItemClickEnabled="True" ItemClick="RouteList_ItemClick" RelativePanel.AlignBottomWithPanel="True" RelativePanel.AlignTopWithPanel="True" RelativePanel.AlignLeftWithPanel="True" RelativePanel.AlignRightWithPanel="True">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate x:Name="ListViewDataTemplate">
|
|
<StackPanel Margin="5,0,0,0" Grid.Column="0">
|
|
<TextBlock Text="{Binding Name}" FontSize="20" TextWrapping="NoWrap"/>
|
|
<TextBlock Text="{Binding LandmarksDescription}" FontSize="14" TextWrapping="WrapWholeWords" />
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
|
|
</ListView>
|
|
</RelativePanel>
|
|
</Page>
|