|
|
@ -8,7 +8,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
<CollectionView ItemsSource="{Binding AuteurGroups}" IsGrouped="True" SelectionMode="Single">
|
|
|
|
<CollectionView ItemsSource="{Binding AuteurGroups}" IsGrouped="True" SelectionMode="Single">
|
|
|
|
<CollectionView.GroupHeaderTemplate>
|
|
|
|
<CollectionView.GroupHeaderTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<DataTemplate x:DataType="model:Author">
|
|
|
|
<Label Text="{Binding Name}"
|
|
|
|
<Label Text="{Binding Name}"
|
|
|
|
FontFamily="SF-Compact-Display-Semibold"
|
|
|
|
FontFamily="SF-Compact-Display-Semibold"
|
|
|
|
BackgroundColor="LightGrey"
|
|
|
|
BackgroundColor="LightGrey"
|
|
|
@ -17,12 +17,12 @@
|
|
|
|
</DataTemplate>
|
|
|
|
</DataTemplate>
|
|
|
|
</CollectionView.GroupHeaderTemplate>
|
|
|
|
</CollectionView.GroupHeaderTemplate>
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<DataTemplate x:DataType="model:Book">
|
|
|
|
<StackLayout Style="{StaticResource StyleCollectionStack}">
|
|
|
|
<StackLayout Style="{StaticResource StyleCollectionStack}">
|
|
|
|
<Grid>
|
|
|
|
<Grid>
|
|
|
|
<Grid.GestureRecognizers>
|
|
|
|
<Grid.GestureRecognizers>
|
|
|
|
<TapGestureRecognizer Command="{Binding Source={x:Reference ThisPage}, Path=Nav.BookDetailCommand}"
|
|
|
|
<TapGestureRecognizer Command="{Binding Source={x:Reference ThisPage}, Path=Nav.BookDetailCommand}"
|
|
|
|
CommandParameter="{Binding .}"/>
|
|
|
|
CommandParameter="{Binding Id}"/>
|
|
|
|
</Grid.GestureRecognizers>
|
|
|
|
</Grid.GestureRecognizers>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
@ -41,9 +41,7 @@
|
|
|
|
FontFamily="SF-Compact-Display-Bold"
|
|
|
|
FontFamily="SF-Compact-Display-Bold"
|
|
|
|
FontSize="18"
|
|
|
|
FontSize="18"
|
|
|
|
TextColor="Black"/>
|
|
|
|
TextColor="Black"/>
|
|
|
|
<Label Text="{Binding Authors}"
|
|
|
|
<!-- <Label Text="{Binding Authors, Converter=}" FontFamily="SF-Compact-Display-Semibold" TextColor="Black"/> -->
|
|
|
|
FontFamily="SF-Compact-Display-Semibold"
|
|
|
|
|
|
|
|
TextColor="Black"/>
|
|
|
|
|
|
|
|
<Label
|
|
|
|
<Label
|
|
|
|
TextColor="SlateGray"
|
|
|
|
TextColor="SlateGray"
|
|
|
|
Text="{Binding Status}"/>
|
|
|
|
Text="{Binding Status}"/>
|
|
|
|