Exemplo n.º 1
0
 private void btnPlus_Click(object sender, EventArgs e)
 {
     Operations.Addition();
     Input.ResetInput();
 }
Exemplo n.º 2
0
 private void btnExponents_Click(object sender, EventArgs e)
 {
     Operations.Exponents();
     Input.ResetInput();
 }
Exemplo n.º 3
0
 private void btnMinus_Click(object sender, EventArgs e)
 {
     Operations.Subtraction();
     Input.ResetInput();
 }
Exemplo n.º 4
0
 private void btnReciprocal_Click(object sender, EventArgs e)
 {
     Operations.Reciprocal();
     Input.ResetInput();
 }
Exemplo n.º 5
0
 private void btnMultiply_Click(object sender, EventArgs e)
 {
     Operations.Multiplication();
     Input.ResetInput();
 }
Exemplo n.º 6
0
 private void btnDivide_Click(object sender, EventArgs e)
 {
     Operations.Division();
     Input.ResetInput();
 }
Exemplo n.º 7
0
 private void btnSwitchSigns_Click(object sender, EventArgs e)
 {
     Operations.SwitchSigns();
 }
Exemplo n.º 8
0
 private void btnSquareRoot_Click(object sender, EventArgs e)
 {
     Operations.SquareRoot();
     Input.ResetInput();
 }
Exemplo n.º 9
0
 private void btnXSquared_Click(object sender, EventArgs e)
 {
     Operations.XSquared();
     Input.ResetInput();
 }
Exemplo n.º 10
0
 private void btnSwapXY_Click(object sender, EventArgs e)
 {
     Operations.SwapXY();
     Input.ResetInput();
 }