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/StatutLectureView.xaml.cs

35 lines
644 B

using LivreLand.Model;
using LivreLand.ViewModel;
namespace LivreLand.View;
public partial class StatutLectureView : ContentPage
{
#region Properties
public StatutLectureVM StatutLectureVM { get; set; }
#endregion
#region Constructor
public StatutLectureView(StatutLectureVM statutLectureVM)
{
StatutLectureVM = statutLectureVM;
InitializeComponent();
BindingContext = this;
}
#endregion
#region Methods
protected override void OnAppearing()
{
base.OnAppearing();
StatutLectureVM.Manager.GetBooksFromCollectionCommand.Execute(null);
}
#endregion
}