コード例 #1
0
ファイル: Action.cs プロジェクト: Meowse/SpectrumChapeau
 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;
 }