-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.axaml.cs
174 lines (141 loc) · 4.94 KB
/
MainWindow.axaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
using System;
using System.Collections.Generic;
using System.Globalization;
using Avalonia;
using Avalonia.Controls;
using Avalonia.Interactivity;
using Avalonia.Markup.Xaml;
namespace RPN_Calculator_UI;
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
this.AttachDevTools();
TextBox1 = this.FindControl<TextBox>("TextBox1");
}
private void InitializeComponent()
{
AvaloniaXamlLoader.Load(this);
}
public void ButtonSeven_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text += "7";
}
public void ButtonEight_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "8";
}
public void ButtonNine_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "9";
}
public void ButtonFour_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "4";
}
public void ButtonFive_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "5";
}
public void ButtonSix_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "6";
}
public void ButtonOne_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "1";
}
public void ButtonTwo_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "2";
}
public void ButtonThree_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "3";
}
public void ButtonZero_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "0";
}
public void ButtonCancel_Click(object sender, RoutedEventArgs e)
{
if (TextBox1.Text.Length != 0)
{
TextBox1.Text = TextBox1.Text.Remove(TextBox1.Text.Length - 1);
}
else
{
TextBox1.Text = "";
}
}
public void ButtonClear_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = "";
}
public void ButtonDivide_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "/";
}
public void ButtonModule_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "%";
}
public void ButtonMultiplication_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "*";
}
public void ButtonSub_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "-";
}
public void ButtonSum_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "+";
Console.WriteLine(TextBox1.Text);
}
public void ButtonDot_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + ",";
}
public void ButtonPow_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "^";
}
public void ButtonSqrt_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "sqrt";
}
public void SpaceButton_Click(object sender, RoutedEventArgs e)
{
TextBox1.Text = TextBox1.Text + " ";
}
public void ButtonResult_Click(object sender, RoutedEventArgs e)
{
Dictionary<string, Func<double, double, double>>
operations = new Dictionary<string, Func<double, double, double>>();
if (operations == null) throw new ArgumentNullException(nameof(operations));
operations.Add("+", (a, b) => a + b);
operations.Add("-", (a, b) => a - b);
operations.Add("*", (a, b) => a * b);
operations.Add("/", (a, b) => a / b);
operations.Add("^", Math.Pow);
operations.Add("%", (a, b) => a % b);
operations.Add("sqrt", (a, _) => Math.Sqrt(a+_));
var data = new Stack<double>();
foreach (var part in TextBox1.Text.Split(' '))
{
if (double.TryParse(part, out var n))
{
data.Push(n);
}
else
{
var b = data.Pop();
var a = data.Pop();
data.Push(operations[part](a,b));
}
}
TextBox1.Text = TextBox1.Text + " = " + Convert.ToString(data.Pop(), CultureInfo.CurrentCulture);
}
}