|
|
|
@ -3,39 +3,47 @@
|
|
|
|
|
x:Class="mastermind.Pages.Accueil"
|
|
|
|
|
Title="Accueil">
|
|
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
<!-- Titre -->
|
|
|
|
|
<Label Text="Mastermind"
|
|
|
|
|
FontSize="24"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
VerticalOptions="Center"/>
|
|
|
|
|
|
|
|
|
|
<!-- Boutons -->
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
<!-- Bouton en haut à droite -->
|
|
|
|
|
<Button Text="Bouton 1"
|
|
|
|
|
HorizontalOptions="End"
|
|
|
|
|
VerticalOptions="Start"
|
|
|
|
|
Grid.Column="1"/>
|
|
|
|
|
|
|
|
|
|
<!-- Bouton en bas à gauche -->
|
|
|
|
|
<Button Text="Bouton 3"
|
|
|
|
|
HorizontalOptions="Start"
|
|
|
|
|
VerticalOptions="End"/>
|
|
|
|
|
<Grid
|
|
|
|
|
ColumnDefinitions="*"
|
|
|
|
|
RowDefinitions="*, *, *">
|
|
|
|
|
|
|
|
|
|
<Grid
|
|
|
|
|
ColumnDefinitions="*"
|
|
|
|
|
RowDefinitions="auto">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
|
Source="pointinterrogation.png"
|
|
|
|
|
HorizontalOptions="End"
|
|
|
|
|
HeightRequest="150"
|
|
|
|
|
WidthRequest="150"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!-- Bouton en bas à droite -->
|
|
|
|
|
<Button Text="Bouton 2"
|
|
|
|
|
<Label
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Text="Mastermind"
|
|
|
|
|
FontSize="Header"
|
|
|
|
|
HorizontalTextAlignment="Center"/>
|
|
|
|
|
|
|
|
|
|
<Grid
|
|
|
|
|
Grid.Row="2"
|
|
|
|
|
VerticalOptions="End"
|
|
|
|
|
ColumnDefinitions="*, *"
|
|
|
|
|
RowDefinitions="auto">
|
|
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
|
Source="connexion.png"
|
|
|
|
|
HorizontalOptions="Start"
|
|
|
|
|
HeightRequest="150"
|
|
|
|
|
WidthRequest="150"/>
|
|
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
HorizontalOptions="End"
|
|
|
|
|
VerticalOptions="End"/>
|
|
|
|
|
Source="statistiques.png"
|
|
|
|
|
HeightRequest="150"
|
|
|
|
|
WidthRequest="150"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
</ContentPage>
|
|
|
|
|