Добавлены Операции и Константы. Изменено оформление формы, так как были отключены кнопки:

- Градусы;
- Радианы;
- Грады;
- Память ((MC, MR, MS, M-, M+);
- dms;
- F-E.
This commit is contained in:
Мария 2024-04-14 23:59:47 +03:00
parent a9be1638c3
commit a906568f42
8 changed files with 117 additions and 95 deletions

View file

@ -23,9 +23,7 @@ public static class CalculatorExtensions
case Operation.Square:
case Operation.Log:
case Operation.Ln:
case Operation.Exp:
case Operation.Inv:
case Operation.Pi:
case Operation.OneDiv:
case Operation.Mod:
case Operation.Neg:

View file

@ -18,7 +18,6 @@ public enum Operation
Ln,
Exp,
Inv,
Pi,
OneDiv,
Mod,
Neg,
@ -30,5 +29,14 @@ public enum Operation
Tanh,
Tan,
OpenBracket,
CloseBracket
CloseBracket,
Int,
Dms,
FE,
PowX
}
public enum Constants
{
Pi,
Exp
}