Ejemplo n.º 1
0
 private void KeyFactorial_Click(object sender, EventArgs e)
 {
     CalculatorEngine.CalcOperation(CalculatorEngine.Operator.eFactorial);
 }
Ejemplo n.º 2
0
 private void KeyCubeRoot_Click(object sender, EventArgs e)
 {
     CalculatorEngine.CalcOperation(CalculatorEngine.Operator.eCubeRoot);
 }
Ejemplo n.º 3
0
 private void KeyReverse_Click(object sender, EventArgs e)
 {
     CalculatorEngine.CalcOperation(CalculatorEngine.Operator.eReverse);
 }
Ejemplo n.º 4
0
 private void KeySquaring_Click(object sender, EventArgs e)
 {
     CalculatorEngine.CalcOperation(CalculatorEngine.Operator.eSquaring);
 }
Ejemplo n.º 5
0
 protected void KeyDivide_Click(object sender, System.EventArgs e)
 {
     CalculatorEngine.CalcOperation(CalculatorEngine.Operator.eDivide);
 }
Ejemplo n.º 6
0
 protected void KeyMultiply_Click(object sender, System.EventArgs e)
 {
     CalculatorEngine.CalcOperation(CalculatorEngine.Operator.eMultiply);
 }
Ejemplo n.º 7
0
 protected void KeyMinus_Click(object sender, System.EventArgs e)
 {
     CalculatorEngine.CalcOperation(CalculatorEngine.Operator.eSubtract);
 }
Ejemplo n.º 8
0
 protected void KeyPlus_Click(object sender, System.EventArgs e)
 {
     CalculatorEngine.CalcOperation(CalculatorEngine.Operator.eAdd);
 }