You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="MauiSpark.Pages.Accueil"
|
|
Title="Accueil">
|
|
|
|
<Grid
|
|
ColumnDefinitions="*"
|
|
RowDefinitions="*, *, *">
|
|
|
|
|
|
<Grid
|
|
ColumnDefinitions="*,*,*,*,*"
|
|
RowDefinitions="auto">
|
|
|
|
<ImageButton
|
|
Grid.Column="1"
|
|
Style="{StaticResource AccueilBouton}"
|
|
Source="pointinterrogation.png"
|
|
/>
|
|
|
|
<ImageButton
|
|
Grid.Column="2"
|
|
Style="{StaticResource AccueilBouton}"
|
|
Source="connexion.png"
|
|
/>
|
|
|
|
<ImageButton
|
|
Grid.Column="3"
|
|
Style="{StaticResource AccueilBouton}"
|
|
Source="statistiques.png"
|
|
/>
|
|
|
|
</Grid>
|
|
|
|
<Label
|
|
Grid.Row="1"
|
|
Text="MASTERMIND"
|
|
FontSize="Header"
|
|
HorizontalTextAlignment="Center"/>
|
|
|
|
<Button
|
|
Grid.Row="2"
|
|
Text="Jouer"
|
|
/>
|
|
|
|
</Grid>
|
|
</ContentPage>
|