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.

21 lines
453 B

using System.Diagnostics;
using Model;
namespace Views;
public partial class Especes : ContentPage
{
public Especes()
{
InitializeComponent();
BindingContext = (App.Current as App).Theque.Especetheque;
}
public void OnClick(object sender, ItemTappedEventArgs e)
{
(App.Current as App).EspeceSelectionner = e.Item as Espece;
Navigation.PushAsync(new DetailEspece());
}
}