Esempio n. 1
0
 public Action(string description, Form1 creator)
     : this()
 {
     _description = description;
     _creator = creator;
     UpdateUI();
 }
Esempio n. 2
0
 public DoesSomething(string title, Form1 mainForm)
     : this()
 {
     Text = "Action:" + " " + title;
     currentTitle = title;
     Done = false;
     Undone = true;
     parentForm = mainForm;
 }