parent
3b2d64ed04
commit
5ef7f9f9d8
@ -1,23 +1,40 @@
|
|||||||
using LivreLand.Model;
|
using LivreLand.Model;
|
||||||
|
using LivreLand.ViewModel;
|
||||||
|
|
||||||
namespace LivreLand.View;
|
namespace LivreLand.View;
|
||||||
|
|
||||||
public partial class FavorisView : ContentPage
|
public partial class FavorisView : ContentPage
|
||||||
{
|
{
|
||||||
public List<BookModel> FavorisBooks { get; set; } = new List<BookModel>()
|
#region Properties
|
||||||
{
|
|
||||||
new BookModel("La zone du dehors","Alain Damasio","Terminé", 0),
|
public FavorisVM FavorisVM { get; set; }
|
||||||
new BookModel("Le problème à trois corps","Cixin Liu","Terminé", 0)
|
|
||||||
};
|
#endregion
|
||||||
|
|
||||||
|
#region Constructor
|
||||||
|
|
||||||
public FavorisView()
|
public FavorisView(FavorisVM favorisVM)
|
||||||
{
|
{
|
||||||
BindingContext = this;
|
FavorisVM = favorisVM;
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
BindingContext = this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Methods
|
||||||
|
|
||||||
void OnSelectionChanged(object sender, SelectionChangedEventArgs e)
|
void OnSelectionChanged(object sender, SelectionChangedEventArgs e)
|
||||||
{
|
{
|
||||||
//App.Current.MainPage.Navigation.PushAsync(new DetailsLivreView());
|
//App.Current.MainPage.Navigation.PushAsync(new DetailsLivreView());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override void OnAppearing()
|
||||||
|
{
|
||||||
|
base.OnAppearing();
|
||||||
|
|
||||||
|
FavorisVM.Manager.GetFavoriteBooksCommand.Execute(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
Loading…
Reference in new issue