Inheritance: System.EventArgs
 private void RaiseKeyPressed(FormulaKeyEventArgs e)
 {
     if (KeyPressed != null) KeyPressed.Invoke(e);
 }
Exemplo n.º 2
0
 private void KeyPressedAction(FormulaKeyEventArgs e)
 {
     _editor.HandleKey(e.Data.Key, e.Data.LocalVariable, e.Data.GlobalVariable);
     SendEvaluation(e.Data.LocalVariable, e.Data.GlobalVariable);
 }
 private void KeyPressed(FormulaKeyEventArgs e)
 {
     _viewModel.KeyPressedCommand.Execute(e);
 }
 private void KeyPressedAction(FormulaKeyEventArgs e)
 {
     _editor.HandleKey(e.Data.Key, e.Data.LocalVariable, e.Data.GlobalVariable);
     SendEvaluation(e.Data.LocalVariable, e.Data.GlobalVariable);
 }