|
|
|
@ -13,28 +13,23 @@
|
|
|
|
|
<ColumnDefinition Width="90*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<VerticalStackLayout BackgroundColor="#72a3b3" Grid.Row="0" Grid.Column="0" Spacing="10">
|
|
|
|
|
|
|
|
|
|
<Image Source="ohara2.png" HeightRequest="200" HorizontalOptions="Center">
|
|
|
|
|
<Image.Clip>
|
|
|
|
|
<EllipseGeometry Center="150,90" RadiusX="80" RadiusY="80"/>
|
|
|
|
|
</Image.Clip>
|
|
|
|
|
</Image>
|
|
|
|
|
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Accueil" Clicked="Hyperlink_Accueil"/>
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Carte" Clicked="Hyperlink_Carte"/>
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Personnages" Clicked="Hyperlink_Perso"/>
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Fruits du démon" Clicked="Hyperlink_FDD"/>
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Bateaux" Clicked="Hyperlink_Bateau"/>
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Îles" Clicked="Hyperlink_Ile"/>
|
|
|
|
|
<Button Style="{StaticResource buttonMenu2}" Text="Bestiaire" Clicked="Hyperlink_Bestiaire"/>
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Bestiaire" Clicked="Hyperlink_Bestiaire"/>
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Équipages" Clicked="Hyperlink_Equip"/>
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Favoris" />
|
|
|
|
|
<Button Style="{StaticResource buttonMenu2}" Text="Favoris" />
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<CollectionView x:Name="listeFavs" Grid.Column="1" SelectionMode="Single" SelectionChanged="listeFavs_SelectionChanged">
|
|
|
|
|
<CollectionView.ItemsLayout Style="">
|
|
|
|
|
<CollectionView x:Name="listeFavs" Grid.Column="1" SelectionMode="Single" SelectionChanged="listeFavs_SelectionChanged" >
|
|
|
|
|
<CollectionView.ItemsLayout>
|
|
|
|
|
<GridItemsLayout Orientation="Vertical" Span="4" />
|
|
|
|
|
</CollectionView.ItemsLayout>
|
|
|
|
|
<CollectionView.Header>
|
|
|
|
@ -59,36 +54,27 @@
|
|
|
|
|
</Grid>
|
|
|
|
|
</CollectionView.Header>
|
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
|
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Frame Style="{StaticResource frameObjet}" Margin="10">
|
|
|
|
|
<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" />
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</Frame>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Frame Style="{StaticResource frameObjet}" Margin="15">
|
|
|
|
|
<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" />
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</Frame>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|
|
</CollectionView>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
</ContentPage>
|