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.

37 lines
957 B

using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace OrderStacks.view
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class LastPage_Rules : ContentPage
{
/**
* Constructeur de la page *
**/
public LastPage_Rules()
{
InitializeComponent();
NavigationPage.SetHasNavigationBar(this, false);
}
/**
* Retourne sur la page d'accueil lorsque l'on clique sur l'image de la maison *
**/
private async void BackToHome(object sender, EventArgs args)
{
await Navigation.PushAsync(new HomePage());
}
/**
* Ouvre la page GamePreparationPage lorsque l'on clique sur le bouton Jouer *
**/
private async void ClickToPlay(object sender, EventArgs args)
{
await Navigation.PushAsync(new GamePreparationPage());
}
}
}