parent
ad5d0b50df
commit
147193f535
@ -1,22 +1,40 @@
|
|||||||
using LivreLand.Model;
|
using LivreLand.Model;
|
||||||
|
using LivreLand.ViewModel;
|
||||||
|
|
||||||
namespace LivreLand.View;
|
namespace LivreLand.View;
|
||||||
|
|
||||||
public partial class ALirePlusTardView : ContentPage
|
public partial class ALirePlusTardView : ContentPage
|
||||||
{
|
{
|
||||||
public List<BookModel> ALirePlusTardBooks { get; set; } = new List<BookModel>()
|
#region Properties
|
||||||
{
|
|
||||||
new BookModel("La horde du contrevent","Alain Damasio","Non lu", 0),
|
public ALirePlusTardVM ALirePlusTardVM { get; set; }
|
||||||
};
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Constructor
|
||||||
|
|
||||||
public ALirePlusTardView()
|
public ALirePlusTardView(ALirePlusTardVM aLirePlusTardVM)
|
||||||
{
|
{
|
||||||
BindingContext = this;
|
ALirePlusTardVM = aLirePlusTardVM;
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
BindingContext = this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Properties
|
||||||
|
|
||||||
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();
|
||||||
|
|
||||||
|
ALirePlusTardVM.Manager.GetToBeReadBooksCommand.Execute(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
@ -1,9 +1,34 @@
|
|||||||
|
using LivreLand.ViewModel;
|
||||||
|
|
||||||
namespace LivreLand.View;
|
namespace LivreLand.View;
|
||||||
|
|
||||||
public partial class FiltrageNoteView : ContentPage
|
public partial class FiltrageNoteView : ContentPage
|
||||||
{
|
{
|
||||||
public FiltrageNoteView()
|
#region Properties
|
||||||
{
|
|
||||||
InitializeComponent();
|
public FiltrageNoteVM FiltrageNoteVM { get; set; }
|
||||||
}
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Constructor
|
||||||
|
|
||||||
|
public FiltrageNoteView(FiltrageNoteVM filtrageNoteVM)
|
||||||
|
{
|
||||||
|
FiltrageNoteVM = filtrageNoteVM;
|
||||||
|
InitializeComponent();
|
||||||
|
BindingContext = this;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Methods
|
||||||
|
|
||||||
|
protected override void OnAppearing()
|
||||||
|
{
|
||||||
|
base.OnAppearing();
|
||||||
|
|
||||||
|
FiltrageNoteVM.Manager.GetAllRatingsCommand.Execute(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
Loading…
Reference in new issue