Example #1
0
 protected virtual void OnRunRequested(RunRequestedEventArgs e)
 {
     if (RunRequested != null)
     {
         RunRequested.Invoke(this, e);
     }
 }
Example #2
0
 void editor_RunRequested(object sender, RunRequestedEventArgs e)
 {
     if (RunRequested != null)
     {
         RunRequested.Invoke(this, e);
     }
 }
 protected virtual void OnRunRequested(RunRequestedEventArgs e)
 {
   if (RunRequested != null) RunRequested.Invoke(this, e);
 }
Example #4
0
 void txtFind_RunRequested(object sender, RunRequestedEventArgs e)
 {
     FindNext();
 }
Example #5
0
 void txtReplace_RunRequested(object sender, RunRequestedEventArgs e)
 {
     Replace();
 }
Example #6
0
 void editor_RunRequested(object sender, RunRequestedEventArgs e)
 {
   if (RunRequested != null)
     RunRequested.Invoke(this, e);
 }
Example #7
0
 void txtFind_RunRequested(object sender, RunRequestedEventArgs e)
 {
   FindNext();
 }
Example #8
0
 void txtReplace_RunRequested(object sender, RunRequestedEventArgs e)
 {
   Replace();
 }