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/Egalite.xaml.cs

17 lines
469 B

using CoreLibrary.Events;
using CoreLibrary;
namespace MauiSpark.Pages;
public partial class Egalite : ContentPage
{
public Egalite(Partie p, PartieTermineeEventArgs e)
{
InitializeComponent();
BindingContext = $"Les deux joueurs, {e.Gagnants.First().Nom} et {e.Gagnants.Last().Nom} ont trouvé le code secret"; ;
}
private void QuandButtonMenuCliquer(object sender, EventArgs e)
{
Navigation.PushAsync(new Mode());
}
}