|
|
|
@ -25,23 +25,24 @@
|
|
|
|
|
Style="{StaticResource SousTitre}">
|
|
|
|
|
</Label>
|
|
|
|
|
|
|
|
|
|
<ListView ItemsSource="{Binding InfoTitles}">
|
|
|
|
|
<ListView.ItemTemplate>
|
|
|
|
|
<CollectionView ItemsSource="{Binding InfoTitles}" Margin="0,0,0,10">
|
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<ViewCell>
|
|
|
|
|
<Frame Style="{StaticResource Song}">
|
|
|
|
|
<Label Text="{Binding Name}"
|
|
|
|
|
<Frame Style="{StaticResource Song}">
|
|
|
|
|
<Label Text="{Binding Name}"
|
|
|
|
|
FontSize="20"
|
|
|
|
|
TextColor="white"
|
|
|
|
|
HorizontalTextAlignment="Center"/>
|
|
|
|
|
<Frame.GestureRecognizers>
|
|
|
|
|
<TapGestureRecognizer Tapped="GoToInfoTitle"/>
|
|
|
|
|
</Frame.GestureRecognizers>
|
|
|
|
|
</Frame>
|
|
|
|
|
</ViewCell>
|
|
|
|
|
<Frame.GestureRecognizers>
|
|
|
|
|
<TapGestureRecognizer Tapped="GoToInfoTitle"/>
|
|
|
|
|
</Frame.GestureRecognizers>
|
|
|
|
|
</Frame>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</ListView.ItemTemplate>
|
|
|
|
|
</ListView>
|
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|
|
<CollectionView.ItemsLayout>
|
|
|
|
|
<LinearItemsLayout Orientation="Vertical" ItemSpacing="10"/>
|
|
|
|
|
</CollectionView.ItemsLayout>
|
|
|
|
|
</CollectionView>
|
|
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
<ScrollView Grid.Column="1" VerticalOptions="Fill" BackgroundColor="gray">
|
|
|
|
|