|
|
|
@ -5,37 +5,29 @@
|
|
|
|
|
Title="PageFavoris"
|
|
|
|
|
BackgroundColor="#e2edf1">
|
|
|
|
|
|
|
|
|
|
<CollectionView x:Name="listeFavs" Grid.Column="1" SelectionMode="Single" SelectionChanged="listeFavs_SelectionChanged">
|
|
|
|
|
<CollectionView.ItemsLayout Style="">
|
|
|
|
|
<GridItemsLayout Orientation="Vertical" Span="4" />
|
|
|
|
|
<CollectionView x:Name="listeFavs" SelectionMode="Single" SelectionChanged="listeFavs_SelectionChanged">
|
|
|
|
|
<CollectionView.ItemsLayout>
|
|
|
|
|
<GridItemsLayout Orientation="Vertical" Span="4" HorizontalItemSpacing="15" VerticalItemSpacing="15"/>
|
|
|
|
|
</CollectionView.ItemsLayout>
|
|
|
|
|
<CollectionView.Header>
|
|
|
|
|
<Grid BackgroundColor="#72a3b3" Padding="10" ColumnSpacing="50" >
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="10*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions >
|
|
|
|
|
<ColumnDefinition Width="20*"/>
|
|
|
|
|
<ColumnDefinition Width="25*"/>
|
|
|
|
|
<ColumnDefinition Width="10*"/>
|
|
|
|
|
<ColumnDefinition Width="10*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<SearchBar Placeholder="Rechercher..." BackgroundColor="#bfe5ef" Grid.Column="0"/>
|
|
|
|
|
<Frame CornerRadius="20" BackgroundColor="#bfe5ef" BorderColor="#bfe5ef" Grid.Column="2">
|
|
|
|
|
<HorizontalStackLayout BackgroundColor="#72a3b3" Padding="10" Spacing="80">
|
|
|
|
|
<SearchBar Placeholder="Rechercher..." BackgroundColor="#bfe5ef" WidthRequest="200"/>
|
|
|
|
|
<Frame CornerRadius="20" BackgroundColor="#bfe5ef" BorderColor="#bfe5ef">
|
|
|
|
|
<Label Text="Filtrer" HorizontalTextAlignment="Center" />
|
|
|
|
|
</Frame>
|
|
|
|
|
|
|
|
|
|
<Frame CornerRadius="20" BackgroundColor="#bfe5ef" BorderColor="#bfe5ef" Grid.Column="3">
|
|
|
|
|
<Frame CornerRadius="20" BackgroundColor="#bfe5ef" BorderColor="#bfe5ef" >
|
|
|
|
|
<Label Text="Trier" HorizontalTextAlignment="Center" />
|
|
|
|
|
</Frame>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
</CollectionView.Header>
|
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
|
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Frame Style="{StaticResource frameObjet}" Margin="10">
|
|
|
|
|
<Frame Style="{StaticResource frameObjet}">
|
|
|
|
|
<StackLayout Orientation="Vertical" Padding="5">
|
|
|
|
|
<Image
|
|
|
|
|
Source="{Binding Image}"
|
|
|
|
|