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.
mastermind/Sources/MauiSpark/Pages/AccueilPage.xaml

31 lines
856 B

<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="2"
Text="Jouer"
VerticalOptions="Center"
Margin="0, 50"
Clicked="QuandJouerClique"/>
</Grid>
</ContentPage>