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.
38 lines
1.0 KiB
38 lines
1.0 KiB
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="MauiSpark.Pages.AccueilPage"
|
|
xmlns:vues="clr-namespace:MauiSpark.Vues"
|
|
Title="Accueil">
|
|
|
|
<Grid
|
|
ColumnDefinitions="*"
|
|
RowDefinitions="*, *, *">
|
|
|
|
|
|
<Grid
|
|
ColumnDefinitions="*, *, *"
|
|
RowDefinitions="*">
|
|
|
|
<vues:BoutonReglesVue HorizontalOptions="Start"/>
|
|
|
|
<vues:TitreVue Texte="mastermind" Grid.Column="1"/>
|
|
|
|
<vues:BoutonClassementVue Grid.Column="2" HorizontalOptions="End"/>
|
|
</Grid>
|
|
|
|
<Button
|
|
Grid.Row="1"
|
|
Text="Jouer"
|
|
Margin="0,30"
|
|
VerticalOptions="End"
|
|
Clicked="QuandJouerClique"/>
|
|
|
|
<Button
|
|
Grid.Row="2"
|
|
Text="Reprendre"
|
|
Margin="0,30"
|
|
VerticalOptions="Start"
|
|
Clicked="QuandReprendreClique"/>
|
|
</Grid>
|
|
</ContentPage>
|