using Model; namespace Views; public partial class DetailAnimal : ContentPage { public DetailAnimal() { InitializeComponent(); BindingContext = (App.Current as App).AnimalSelectionner; Picker_especes.BindingContext = (App.Current as App).Theque; } public void Button_OnClick(object sender, EventArgs e) { (App.Current as App).Theque.SupprimerAnimal((App.Current as App).AnimalSelectionner); Navigation.PopAsync(); } private void EspeceClic(object sender, EventArgs e) { (App.Current as App).AnimalSelectionner.Espece = (sender as Picker).SelectedItem as Espece; } }