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.
LivreLand/LivreLand/View/ALirePlusTardView.xaml.cs

22 lines
541 B

using LivreLand.Model;
namespace LivreLand.View;
public partial class ALirePlusTardView : ContentPage
{
public List<BookModel> ALirePlusTardBooks { get; set; } = new List<BookModel>()
{
new BookModel("La horde du contrevent","Alain Damasio","Non lu", 0),
};
public ALirePlusTardView()
{
BindingContext = this;
InitializeComponent();
}
void OnSelectionChanged(object sender, SelectionChangedEventArgs e)
{
App.Current.MainPage.Navigation.PushAsync(new DetailsLivreView());
}
}