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