コード例 #1
0
 void editor_RunRequested(object sender, RunRequestedEventArgs e)
 {
     if (RunRequested != null)
     {
         RunRequested.Invoke(this, e);
     }
 }
コード例 #2
0
ファイル: EditorWinForm.cs プロジェクト: y1026/InnovatorAdmin
 protected virtual void OnRunRequested(RunRequestedEventArgs e)
 {
     if (RunRequested != null)
     {
         RunRequested.Invoke(this, e);
     }
 }