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