private void txtApplyFunctions_KeyUp(object sender, KeyEventArgs e)
 {
     if (TextBoxHelper.CanEvalFileOrFunction(e))
     {
         txtApplyFunctions_LostFocus(sender, e);
     }
 }
Example #2
0
 private void txtRecognizeSourceFiles_KeyUp(object sender, KeyEventArgs e)
 {
     if (TextBoxHelper.CanEvalFileOrFunction(e))
     {
         txtRecognizeSourceFiles_LostFocus(sender, e);
     }
 }