private void Button_Click(object sender, RoutedEventArgs e) { var button = sender as Button; int digit = -1; object tag = (sender as Button).Tag; if (int.TryParse(button.Content.ToString(), out digit)) { calc.AddDigit(digit); } else { switch (tag) { case "decimal": calc.AddDecimalPoint(); break; case "evaluate": calc.Compute(); break; case "addition": calc.AddOperation(Operation.Add); break; case "substraction": calc.AddOperation(Operation.Sub); break; case "multiplication": calc.AddOperation(Operation.Mul); break; case "division": calc.AddOperation(Operation.Div); break; case "degree": calc.AddOperation(Operation.Pow); break; case "reverse": calc.AddOperation(Operation.Drob); break; case "radical": calc.AddOperation(Operation.Sqrt); break; case "Cos": calc.AddOperation(Operation.Cos); break; case "Sin": calc.AddOperation(Operation.Sin); break; case "clear": calc.Clear(); break; case "reset": calc.Reset(); break; case "earse": calc.Earse(); break; } } }
private void Button_Click(object sender, RoutedEventArgs e) { string text = (sender as Button).Content.ToString(); string name = (sender as Button).Name; int digit; if (int.TryParse(text, out digit)) { calc.AddDigit(digit); } else { switch (name) { case "dec": calc.AddDecimalPoint(); break; case "evaluate": calc.Compute(); break; case "addition": calc.AddOperation(Operation.Add); break; case "substraction": calc.AddOperation(Operation.Sub); break; case "multiplication": calc.AddOperation(Operation.Mul); break; case "division": calc.AddOperation(Operation.Div); break; case "clear": calc.Clear(); break; case "reset": calc.Reset(); break; case "back": calc.ClearSimbol(); break; case "pow": calc.AddOperation(Operation.Pow); break; case "sqrt": calc.AddOperation(Operation.Sqrt); break; case "log": calc.AddOperation(Operation.Log); break; case "tan": calc.AddOperation(Operation.Tan); break; case "Cos": calc.AddOperation(Operation.Cos); break; case "Sin": calc.AddOperation(Operation.Sin); break; case "inter": calc.AddOperation(Operation.Interest); break; case "sign": calc.Sign(); break; case "exit": this.Close(); break; } } }