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.
ConsEco/Sources/IHM/Mobile/Settings.xaml.cs

19 lines
419 B

namespace IHM.Mobile;
using Model;
public partial class Settings : ContentPage
{
public Manager Mgr => (App.Current as App).Manager;
public Settings()
{
InitializeComponent();
}
public void deconnexionOnClicked(object sender, EventArgs e)
{
Mgr.SelectedInscrit = null;
NavigateTo();
}
private async void NavigateTo()
{
await Navigation.PushModalAsync(new MainPage());
}
}