|
|
|
@ -33,7 +33,7 @@
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Bestiaire"/>
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Équipages" Clicked="Hyperlink_Equip"/>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
<VerticalStackLayout Grid.Row="0" Grid.Column="1" Spacing="40">
|
|
|
|
|
<VerticalStackLayout Grid.Row="0" Grid.Column="1" Spacing="10">
|
|
|
|
|
<Grid BackgroundColor="#72a3b3" Padding="10" ColumnSpacing="50" >
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="10*"/>
|
|
|
|
@ -53,44 +53,58 @@
|
|
|
|
|
<Label Text="Trier" HorizontalTextAlignment="Center" />
|
|
|
|
|
</Frame>
|
|
|
|
|
</Grid>
|
|
|
|
|
<Frame BackgroundColor="#e2edf1">
|
|
|
|
|
<ScrollView Orientation="Vertical" VerticalScrollBarVisibility="Always">
|
|
|
|
|
<CollectionView x:Name="listeFDD" ItemsLayout="VerticalGrid, 4">
|
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<Grid Padding="10" ColumnSpacing="10" RowSpacing="20">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="25*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Image
|
|
|
|
|
Source="{Binding Image}"
|
|
|
|
|
HeightRequest="300"
|
|
|
|
|
WidthRequest="300" />
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
|
VerticalOptions="End"
|
|
|
|
|
Padding="7"
|
|
|
|
|
HorizontalTextAlignment="Center"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Text="{Binding Type}"
|
|
|
|
|
FontAttributes="Italic"
|
|
|
|
|
BackgroundColor="#72a3b3"/>
|
|
|
|
|
<Label
|
|
|
|
|
VerticalOptions="End"
|
|
|
|
|
Margin="25"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
HorizontalTextAlignment="Center"
|
|
|
|
|
Padding="5"
|
|
|
|
|
Text="{Binding Nom}"
|
|
|
|
|
BackgroundColor="#72a3b3"
|
|
|
|
|
FontAttributes="Bold" />
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|
|
</CollectionView>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
</Frame>
|
|
|
|
|
|
|
|
|
|
<ScrollView Orientation="Vertical" VerticalScrollBarVisibility="Always">
|
|
|
|
|
<CollectionView x:Name="listeFDD" ItemsLayout="VerticalGrid, 4">
|
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<Grid Padding="20" ColumnSpacing="20" RowSpacing="20">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="25*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Frame CornerRadius="25"
|
|
|
|
|
BackgroundColor="#e2edf1"
|
|
|
|
|
BorderColor="#72a3b3"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
<StackLayout Orientation="Vertical" Padding="5">
|
|
|
|
|
<Image
|
|
|
|
|
Source="{Binding Image}"
|
|
|
|
|
HeightRequest="290"
|
|
|
|
|
WidthRequest="290" />
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
VerticalOptions="Start"
|
|
|
|
|
HorizontalTextAlignment="Center"
|
|
|
|
|
Text="{Binding Nom}"
|
|
|
|
|
|
|
|
|
|
FontSize="19"
|
|
|
|
|
TextColor="#72a3b3"
|
|
|
|
|
FontAttributes="Bold" />
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Text="{Binding Type}"
|
|
|
|
|
FontAttributes="Italic"
|
|
|
|
|
TextColor="#72a3b3"/>
|
|
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</Frame>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|
|
</CollectionView>
|
|
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
</Grid>
|
|
|
|
|