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.
19 lines
412 B
19 lines
412 B
2 years ago
|
namespace IHM;
|
||
|
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());
|
||
|
}
|
||
|
}
|