Example #1
0
 /// <summary>
 /// Démarre le compte à rebours
 /// </summary>
 public override void Start()
 {
     if (!EnPause)
     {
         return;
     }
     Date           = DateUtils.AjouterSecondeDate(DateUtils.GetMaintenant(), NbSecondes);
     NbSecondes     = 0;
     EnPause        = false;
     IdNotification = new Random().Next(0, 10000000);
     NotifUtils.LancerToast(ResourceLoader.GetForCurrentView().GetString("FinCaRText"), Titre, Date, IdNotification, App.ListTimer.MinuteRepeatToast, Convert.ToUInt32(App.ListTimer.NbRepeatToast));
 }