示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HomeWork"/> class.
 /// </summary>
 public HomeWork()
 {
     IsLoading = true;
     Device.BeginInvokeOnMainThread(async() =>
     {
         try
         {
             _LectureList = await LectureModel.GetLecture();
             HoweWorkLayout();
         }
         catch (Exception ex)
         {
         }
     });
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Logbook FillUp Page"/> class.
 /// </summary>
 public LogbookFillUp()
 {
     IsLoading = true;
     Device.BeginInvokeOnMainThread(async() =>
     {
         try
         {
             IsLoading    = true;
             _LectureList = await LectureModel.GetLecture();
             LogbookFillUpLayout();
         }
         catch (Exception ex)
         {
         }
     });
 }