|
|
@ -5,8 +5,13 @@
|
|
|
|
Title="PageEquipage"
|
|
|
|
Title="PageEquipage"
|
|
|
|
BackgroundColor="#e2edf1">
|
|
|
|
BackgroundColor="#e2edf1">
|
|
|
|
|
|
|
|
|
|
|
|
<ScrollView>
|
|
|
|
|
|
|
|
<VerticalStackLayout Spacing="10">
|
|
|
|
|
|
|
|
|
|
|
|
<CollectionView x:Name="listeEquip" EmptyView="Aucun résultat trouvé." SelectionMode="Single" SelectionChanged="listeEquip_SelectionChanged">
|
|
|
|
|
|
|
|
<CollectionView.ItemsLayout>
|
|
|
|
|
|
|
|
<GridItemsLayout Orientation="Vertical" Span="4" HorizontalItemSpacing="15" VerticalItemSpacing="15"/>
|
|
|
|
|
|
|
|
</CollectionView.ItemsLayout>
|
|
|
|
|
|
|
|
<CollectionView.Header>
|
|
|
|
<Grid BackgroundColor="#72a3b3" Padding="10" ColumnSpacing="50" >
|
|
|
|
<Grid BackgroundColor="#72a3b3" Padding="10" ColumnSpacing="50" >
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="10*"/>
|
|
|
|
<RowDefinition Height="10*"/>
|
|
|
@ -17,17 +22,27 @@
|
|
|
|
<ColumnDefinition Width="10*"/>
|
|
|
|
<ColumnDefinition Width="10*"/>
|
|
|
|
<ColumnDefinition Width="10*"/>
|
|
|
|
<ColumnDefinition Width="10*"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<SearchBar Placeholder="Rechercher..." BackgroundColor="#bfe5ef" Grid.Column="0"/>
|
|
|
|
<SearchBar Placeholder="Rechercher..." BackgroundColor="#bfe5ef" Grid.Column="0" x:Name="searchBar" />
|
|
|
|
<Frame CornerRadius="20" BackgroundColor="#bfe5ef" BorderColor="#bfe5ef" Grid.Column="2">
|
|
|
|
|
|
|
|
<Label Text="Filtrer" HorizontalTextAlignment="Center" />
|
|
|
|
<Frame Grid.Column="2" BackgroundColor="#bfe5ef" BorderColor="#bfe5ef" >
|
|
|
|
|
|
|
|
<Label Text="Filtrer" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FlyoutBase.ContextFlyout>
|
|
|
|
|
|
|
|
<MenuFlyout >
|
|
|
|
|
|
|
|
<MenuFlyoutItem x:Name="Logia" Text="Logia" />
|
|
|
|
|
|
|
|
</MenuFlyout>
|
|
|
|
|
|
|
|
</FlyoutBase.ContextFlyout>
|
|
|
|
|
|
|
|
|
|
|
|
</Frame>
|
|
|
|
</Frame>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Frame CornerRadius="20" BackgroundColor="#bfe5ef" BorderColor="#bfe5ef" Grid.Column="3">
|
|
|
|
<Frame CornerRadius="20" BackgroundColor="#bfe5ef" BorderColor="#bfe5ef" Grid.Column="3">
|
|
|
|
<Label Text="Trier" HorizontalTextAlignment="Center" />
|
|
|
|
<Label Text="Trier" HorizontalTextAlignment="Center" />
|
|
|
|
</Frame>
|
|
|
|
</Frame>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</CollectionView.Header>
|
|
|
|
<CollectionView x:Name="listeEquip" ItemsLayout="VerticalGrid, 4" EmptyView="Aucun résultat trouvé." SelectionMode="Single" SelectionChanged="listeEquip_SelectionChanged">
|
|
|
|
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<Grid Padding="20" ColumnSpacing="20" RowSpacing="20">
|
|
|
|
<Grid Padding="20" ColumnSpacing="20" RowSpacing="20">
|
|
|
@ -55,6 +70,4 @@
|
|
|
|
</DataTemplate>
|
|
|
|
</DataTemplate>
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|
</CollectionView>
|
|
|
|
</CollectionView>
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</ContentPage>
|
|
|
|
</ContentPage>
|