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

16 lines
303 B

using MauiSpark.Pages;
namespace MauiSpark.Vues;
public partial class BoutonClassementVue : ContentView
{
public BoutonClassementVue()
{
InitializeComponent();
}
private void QuandClassementClique(Object? sender, EventArgs e)
{
Navigation.PushAsync(new ClassementPage());
}
}