예제 #1
0
 public TaskNotification(Task tasktonotify, TaskControler taskControler)
 {
     InitializeComponent();
     taskToNotify       = tasktonotify;
     this.taskControler = taskControler;
     LoadTask();
 }
예제 #2
0
 public NewTaskForm(TaskControler controler, DateTime date) : this(controler)
 {
     taskDate = date;
 }
예제 #3
0
 public NewTaskForm(TaskControler controler, DateTime date, string text) : this(controler, date)
 {
     reminderBox.Text = text;
 }
예제 #4
0
 public NewTaskForm(TaskControler controler)
 {
     InitializeComponent();
     taskControler = controler;
 }