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.
|
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());
|
|
}
|
|
} |