Добавлены операци:
SqrtY, Factorial, CubeRoot, Square, Cube, PowY, Log, Ln, Exp, Inv, Pi, Sinh, Sin, Cosh, Cos, Tanh, Tan
This commit is contained in:
parent
dcfd7c6e70
commit
d3836d6cfc
14 changed files with 1072 additions and 798 deletions
|
|
@ -1,11 +1,13 @@
|
|||
namespace calculator.View;
|
||||
using calculator.Common;
|
||||
|
||||
namespace calculator.View;
|
||||
|
||||
public interface ICaculatorView
|
||||
{
|
||||
public event Action<char> OperandPressed;
|
||||
public event Action<string> OperatorPressed;
|
||||
public event Action<string> SingleOperatorPressed;
|
||||
public event Action ClearPressed;
|
||||
public event Action<Operation> OperatorPressed;
|
||||
public event Action<bool> ClearPressed;
|
||||
public event Action CalculatePressed;
|
||||
public event Action<Operation> SingleOperatorPressed;
|
||||
public void UpdateView(string input);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue