Пример #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();
 }