Esempio n. 1
0
 public Notification(string name, string message, DateTime alarmTime, List <string> recurring, bool hourly, ToDoItem toDoItem)
 {
     this.name      = name;
     this.message   = message;
     this.alarmTime = alarmTime;
     this.recurring = recurring;
     this.hourly    = hourly;
     this.toDoItem  = toDoItem;
 }
Esempio n. 2
0
 public static void RemoveToDoItem(ToDoItem toDoItem)
 {
     toDoList.Remove(toDoItem);
     UpdateListView();
 }
Esempio n. 3
0
 public void SetSelectedNotification()
 {
     selectedToDoItem = ToDoList.SelectedItem;
 }