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.
27 lines
670 B
27 lines
670 B
using System.Windows.Input;
|
|
|
|
namespace Vues
|
|
{
|
|
public partial class Accueil : ContentPage
|
|
{
|
|
public Accueil()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private async void Connection_Clicked(object sender, EventArgs e)
|
|
{
|
|
await Navigation.PushAsync(new Connexion());
|
|
}
|
|
|
|
private async void Inscription_Clicked(object sender, EventArgs e)
|
|
{
|
|
await Navigation.PushAsync(new Inscription());
|
|
}
|
|
|
|
private async void Invite_Clicked(object sender, EventArgs e)
|
|
{
|
|
await Navigation.PushAsync(new SearchMob());
|
|
}
|
|
}
|
|
} |