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