|
|
@@ -6,6 +6,7 @@
|
|
|
xmlns:c="using:Breda_Tour.CustomControls"
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
+ xmlns:data="using:Breda_Tour.Data"
|
|
|
mc:Ignorable="d">
|
|
|
|
|
|
<Grid>
|
|
|
@@ -17,7 +18,37 @@
|
|
|
<c:DefaultTopBar Header="Help" x:Uid="HelpScreenPagetxtHelpScreen"/>
|
|
|
<c:DefaultPivotControl x:Name="DefaultPivot" Grid.Row="1"/>
|
|
|
<StackPanel Grid.Row="2" Background="White">
|
|
|
-
|
|
|
+ <ScrollViewer Grid.Row="2" VerticalScrollBarVisibility="Hidden">
|
|
|
+ <StackPanel Orientation="Vertical" Background="White">
|
|
|
+ <TextBlock x:Uid="AppSettingsHelp" Style="{StaticResource SettingsHeaderStyle}" Foreground="{StaticResource BredaToursMainColorBrush}" Text="{StaticResource AppSettingsHelp}"></TextBlock>
|
|
|
+ <ListView ItemsSource="{x:Bind HelpItems}" IsItemClickEnabled="True" ItemClick="ListView_ItemClick" >
|
|
|
+ <ListView.ItemTemplate >
|
|
|
+ <DataTemplate x:DataType="data:HelpItem">
|
|
|
+ <ListBoxItem Padding="0" Background="Transparent" IsEnabled="False">
|
|
|
+ <Grid Height="50">
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="50"/>
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <Ellipse Height="40" Width="40" Stroke="{StaticResource BredaToursMainColorBrush}" StrokeThickness="0.5"
|
|
|
+ Margin="5"
|
|
|
+ Name="FolderEllipse"/>
|
|
|
+ <SymbolIcon Symbol="Folder"
|
|
|
+ Foreground="{StaticResource BredaToursMainColorBrush}"
|
|
|
+ Margin="10"
|
|
|
+ >
|
|
|
+ <SymbolIcon.RenderTransform>
|
|
|
+ <RotateTransform Angle="270" CenterX="15" CenterY="15"/>
|
|
|
+ </SymbolIcon.RenderTransform>
|
|
|
+ </SymbolIcon>
|
|
|
+ <TextBlock RelativePanel.RightOf="FolderEllipse" Margin="10,14" Text="{x:Bind Title}" Grid.Column="1"/>
|
|
|
+ </Grid>
|
|
|
+ </ListBoxItem>
|
|
|
+ </DataTemplate>
|
|
|
+ </ListView.ItemTemplate>
|
|
|
+ </ListView>
|
|
|
+ </StackPanel>
|
|
|
+ </ScrollViewer>
|
|
|
</StackPanel>
|
|
|
</Grid>
|
|
|
</Page>
|