コード例 #1
0
 void OnAddInstClicked(AddInstAction action)
 {
     if (AddInstClicked != null)
     {
         AddInstClicked(this, new AddInstEventArgs(action));
     }
 }
コード例 #2
0
 public AddInstEventArgs(AddInstAction action)
 {
     this.Action = action;
 }
コード例 #3
0
ファイル: MainForm.cs プロジェクト: Glought/MultiMC
 void OnAddInstClicked(AddInstAction action)
 {
     if (AddInstClicked != null)
         AddInstClicked(this, new AddInstEventArgs(action));
 }
コード例 #4
0
ファイル: IMainWindow.cs プロジェクト: Altreus/MultiMC
 public AddInstEventArgs(AddInstAction action)
 {
     this.Action = action;
 }