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.
GameAtlas/GameAtlas/GameAtlas/Views/PageJeu.xaml.cs

24 lines
476 B

using GameAtlas.Models;
using System.Diagnostics;
namespace GameAtlas.Views;
public partial class PageJeu : ContentPage
{
public Jeu jeuModel { get; set; }
public Manager JeuManager { get; set; } = new Manager();
public PageJeu()
{
InitializeComponent();
BindingContext = this;
}
async void Back_Tapped(System.Object sender, Microsoft.Maui.Controls.TappedEventArgs e)
{
await Navigation.PopAsync();
}
}