예제 #1
0
 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();
 }