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.
27 lines
584 B
27 lines
584 B
namespace MauiSpark.Pages;
|
|
|
|
public partial class Accueil : ContentPage
|
|
{
|
|
public Accueil()
|
|
{
|
|
NavigationPage.SetHasBackButton(this, false);
|
|
NavigationPage.SetHasNavigationBar(this, false);
|
|
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void QuandJouerClique(Object? sender, EventArgs e)
|
|
{
|
|
Navigation.PushAsync(new Mode());
|
|
}
|
|
|
|
private void QuandReglesClique (Object? sender, EventArgs e)
|
|
{
|
|
Navigation.PushAsync(new Regle());
|
|
}
|
|
|
|
private void QuandTableauClique(Object? sender, EventArgs e)
|
|
{
|
|
Navigation.PushAsync(new TableauScore());
|
|
}
|
|
} |