This commit is contained in:
CreepyCrafter24 2019-11-30 21:04:16 +01:00
parent 77ab29b3f3
commit a9c4680039
2 changed files with 140 additions and 113 deletions

View File

@ -38,6 +38,7 @@
this.calcLabel3 = new System.Windows.Forms.Label(); this.calcLabel3 = new System.Windows.Forms.Label();
this.calcLabel4 = new System.Windows.Forms.Label(); this.calcLabel4 = new System.Windows.Forms.Label();
this.splitContainer = new System.Windows.Forms.SplitContainer(); this.splitContainer = new System.Windows.Forms.SplitContainer();
this.coordLabel = new System.Windows.Forms.Label();
this.evalButton = new System.Windows.Forms.Button(); this.evalButton = new System.Windows.Forms.Button();
this.logExpandButton = new System.Windows.Forms.Button(); this.logExpandButton = new System.Windows.Forms.Button();
this.logBox = new System.Windows.Forms.TextBox(); this.logBox = new System.Windows.Forms.TextBox();
@ -54,18 +55,22 @@
| System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.evalBox.BackColor = System.Drawing.Color.White; this.evalBox.BackColor = System.Drawing.Color.White;
this.evalBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.evalBox.Location = new System.Drawing.Point(3, 5); this.evalBox.Location = new System.Drawing.Point(3, 5);
this.evalBox.Name = "evalBox"; this.evalBox.Name = "evalBox";
this.evalBox.Size = new System.Drawing.Size(231, 147); this.evalBox.Size = new System.Drawing.Size(254, 146);
this.evalBox.TabIndex = 0; this.evalBox.TabIndex = 0;
this.evalBox.Paint += new System.Windows.Forms.PaintEventHandler(this.evalBox_Paint);
this.evalBox.MouseLeave += new System.EventHandler(this.evalBox_MouseLeave);
this.evalBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.evalBox_MouseMove);
// //
// calcBox1 // calcBox1
// //
this.calcBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) this.calcBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.calcBox1.Location = new System.Drawing.Point(27, 174); this.calcBox1.Location = new System.Drawing.Point(27, 173);
this.calcBox1.Name = "calcBox1"; this.calcBox1.Name = "calcBox1";
this.calcBox1.Size = new System.Drawing.Size(207, 20); this.calcBox1.Size = new System.Drawing.Size(230, 20);
this.calcBox1.TabIndex = 1; this.calcBox1.TabIndex = 1;
this.calcBox1.Text = "x"; this.calcBox1.Text = "x";
// //
@ -73,9 +78,9 @@
// //
this.calcBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) this.calcBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.calcBox2.Location = new System.Drawing.Point(27, 200); this.calcBox2.Location = new System.Drawing.Point(27, 199);
this.calcBox2.Name = "calcBox2"; this.calcBox2.Name = "calcBox2";
this.calcBox2.Size = new System.Drawing.Size(207, 20); this.calcBox2.Size = new System.Drawing.Size(230, 20);
this.calcBox2.TabIndex = 2; this.calcBox2.TabIndex = 2;
this.calcBox2.Text = "x"; this.calcBox2.Text = "x";
// //
@ -83,9 +88,9 @@
// //
this.calcBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) this.calcBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.calcBox3.Location = new System.Drawing.Point(27, 226); this.calcBox3.Location = new System.Drawing.Point(27, 225);
this.calcBox3.Name = "calcBox3"; this.calcBox3.Name = "calcBox3";
this.calcBox3.Size = new System.Drawing.Size(207, 20); this.calcBox3.Size = new System.Drawing.Size(230, 20);
this.calcBox3.TabIndex = 3; this.calcBox3.TabIndex = 3;
this.calcBox3.Text = "x"; this.calcBox3.Text = "x";
// //
@ -93,9 +98,9 @@
// //
this.calcBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) this.calcBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.calcBox4.Location = new System.Drawing.Point(27, 252); this.calcBox4.Location = new System.Drawing.Point(27, 251);
this.calcBox4.Name = "calcBox4"; this.calcBox4.Name = "calcBox4";
this.calcBox4.Size = new System.Drawing.Size(207, 20); this.calcBox4.Size = new System.Drawing.Size(230, 20);
this.calcBox4.TabIndex = 4; this.calcBox4.TabIndex = 4;
this.calcBox4.Text = "x"; this.calcBox4.Text = "x";
// //
@ -104,7 +109,7 @@
this.calcLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.calcLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.calcLabel1.AutoSize = true; this.calcLabel1.AutoSize = true;
this.calcLabel1.ForeColor = System.Drawing.Color.Red; this.calcLabel1.ForeColor = System.Drawing.Color.Red;
this.calcLabel1.Location = new System.Drawing.Point(3, 177); this.calcLabel1.Location = new System.Drawing.Point(3, 176);
this.calcLabel1.Name = "calcLabel1"; this.calcLabel1.Name = "calcLabel1";
this.calcLabel1.Size = new System.Drawing.Size(27, 13); this.calcLabel1.Size = new System.Drawing.Size(27, 13);
this.calcLabel1.TabIndex = 5; this.calcLabel1.TabIndex = 5;
@ -115,7 +120,7 @@
this.calcLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.calcLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.calcLabel2.AutoSize = true; this.calcLabel2.AutoSize = true;
this.calcLabel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.calcLabel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
this.calcLabel2.Location = new System.Drawing.Point(3, 203); this.calcLabel2.Location = new System.Drawing.Point(3, 202);
this.calcLabel2.Name = "calcLabel2"; this.calcLabel2.Name = "calcLabel2";
this.calcLabel2.Size = new System.Drawing.Size(27, 13); this.calcLabel2.Size = new System.Drawing.Size(27, 13);
this.calcLabel2.TabIndex = 6; this.calcLabel2.TabIndex = 6;
@ -126,7 +131,7 @@
this.calcLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.calcLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.calcLabel3.AutoSize = true; this.calcLabel3.AutoSize = true;
this.calcLabel3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0))))); this.calcLabel3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
this.calcLabel3.Location = new System.Drawing.Point(3, 229); this.calcLabel3.Location = new System.Drawing.Point(3, 228);
this.calcLabel3.Name = "calcLabel3"; this.calcLabel3.Name = "calcLabel3";
this.calcLabel3.Size = new System.Drawing.Size(27, 13); this.calcLabel3.Size = new System.Drawing.Size(27, 13);
this.calcLabel3.TabIndex = 7; this.calcLabel3.TabIndex = 7;
@ -137,7 +142,7 @@
this.calcLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.calcLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.calcLabel4.AutoSize = true; this.calcLabel4.AutoSize = true;
this.calcLabel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); this.calcLabel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
this.calcLabel4.Location = new System.Drawing.Point(3, 255); this.calcLabel4.Location = new System.Drawing.Point(3, 254);
this.calcLabel4.Name = "calcLabel4"; this.calcLabel4.Name = "calcLabel4";
this.calcLabel4.Size = new System.Drawing.Size(27, 13); this.calcLabel4.Size = new System.Drawing.Size(27, 13);
this.calcLabel4.TabIndex = 8; this.calcLabel4.TabIndex = 8;
@ -153,6 +158,7 @@
// splitContainer.Panel1 // splitContainer.Panel1
// //
this.splitContainer.Panel1.AutoScroll = true; this.splitContainer.Panel1.AutoScroll = true;
this.splitContainer.Panel1.Controls.Add(this.coordLabel);
this.splitContainer.Panel1.Controls.Add(this.evalButton); this.splitContainer.Panel1.Controls.Add(this.evalButton);
this.splitContainer.Panel1.Controls.Add(this.logExpandButton); this.splitContainer.Panel1.Controls.Add(this.logExpandButton);
this.splitContainer.Panel1.Controls.Add(this.evalBox); this.splitContainer.Panel1.Controls.Add(this.evalBox);
@ -171,25 +177,34 @@
this.splitContainer.Panel2.Controls.Add(this.logBox); this.splitContainer.Panel2.Controls.Add(this.logBox);
this.splitContainer.Panel2.Controls.Add(this.logCollapseButton); this.splitContainer.Panel2.Controls.Add(this.logCollapseButton);
this.splitContainer.Panel2MinSize = 0; this.splitContainer.Panel2MinSize = 0;
this.splitContainer.Size = new System.Drawing.Size(407, 275); this.splitContainer.Size = new System.Drawing.Size(448, 274);
this.splitContainer.SplitterDistance = 237; this.splitContainer.SplitterDistance = 260;
this.splitContainer.TabIndex = 9; this.splitContainer.TabIndex = 9;
// //
// coordLabel
//
this.coordLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.coordLabel.AutoSize = true;
this.coordLabel.Location = new System.Drawing.Point(68, 155);
this.coordLabel.Name = "coordLabel";
this.coordLabel.Size = new System.Drawing.Size(0, 13);
this.coordLabel.TabIndex = 10;
//
// evalButton // evalButton
// //
this.evalButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.evalButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.evalButton.Location = new System.Drawing.Point(3, 151); this.evalButton.Location = new System.Drawing.Point(3, 150);
this.evalButton.Name = "evalButton"; this.evalButton.Name = "evalButton";
this.evalButton.Size = new System.Drawing.Size(59, 23); this.evalButton.Size = new System.Drawing.Size(59, 23);
this.evalButton.TabIndex = 9; this.evalButton.TabIndex = 9;
this.evalButton.Text = "Eval"; this.evalButton.Text = "Eval";
this.evalButton.UseVisualStyleBackColor = true; this.evalButton.UseVisualStyleBackColor = true;
this.evalButton.Click += new System.EventHandler(this.evalButton_Click); this.evalButton.Click += new System.EventHandler(this.eval);
// //
// logExpandButton // logExpandButton
// //
this.logExpandButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.logExpandButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.logExpandButton.Location = new System.Drawing.Point(211, 151); this.logExpandButton.Location = new System.Drawing.Point(234, 150);
this.logExpandButton.Name = "logExpandButton"; this.logExpandButton.Name = "logExpandButton";
this.logExpandButton.Size = new System.Drawing.Size(23, 23); this.logExpandButton.Size = new System.Drawing.Size(23, 23);
this.logExpandButton.TabIndex = 0; this.logExpandButton.TabIndex = 0;
@ -204,15 +219,15 @@
this.logBox.Location = new System.Drawing.Point(0, 0); this.logBox.Location = new System.Drawing.Point(0, 0);
this.logBox.Multiline = true; this.logBox.Multiline = true;
this.logBox.Name = "logBox"; this.logBox.Name = "logBox";
this.logBox.Size = new System.Drawing.Size(166, 252); this.logBox.Size = new System.Drawing.Size(184, 251);
this.logBox.TabIndex = 0; this.logBox.TabIndex = 0;
// //
// logCollapseButton // logCollapseButton
// //
this.logCollapseButton.Dock = System.Windows.Forms.DockStyle.Bottom; this.logCollapseButton.Dock = System.Windows.Forms.DockStyle.Bottom;
this.logCollapseButton.Location = new System.Drawing.Point(0, 252); this.logCollapseButton.Location = new System.Drawing.Point(0, 251);
this.logCollapseButton.Name = "logCollapseButton"; this.logCollapseButton.Name = "logCollapseButton";
this.logCollapseButton.Size = new System.Drawing.Size(166, 23); this.logCollapseButton.Size = new System.Drawing.Size(184, 23);
this.logCollapseButton.TabIndex = 1; this.logCollapseButton.TabIndex = 1;
this.logCollapseButton.Text = "<<<"; this.logCollapseButton.Text = "<<<";
this.logCollapseButton.UseVisualStyleBackColor = true; this.logCollapseButton.UseVisualStyleBackColor = true;
@ -223,11 +238,12 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.ClientSize = new System.Drawing.Size(407, 275); this.ClientSize = new System.Drawing.Size(448, 274);
this.Controls.Add(this.splitContainer); this.Controls.Add(this.splitContainer);
this.MaximizeBox = false; this.MinimumSize = new System.Drawing.Size(266, 243);
this.Name = "MainForm"; this.Name = "MainForm";
this.Text = "PowerCalc"; this.Text = "PowerCalc";
this.Resize += new System.EventHandler(this.eval);
this.splitContainer.Panel1.ResumeLayout(false); this.splitContainer.Panel1.ResumeLayout(false);
this.splitContainer.Panel1.PerformLayout(); this.splitContainer.Panel1.PerformLayout();
this.splitContainer.Panel2.ResumeLayout(false); this.splitContainer.Panel2.ResumeLayout(false);
@ -254,6 +270,7 @@
private System.Windows.Forms.Button logCollapseButton; private System.Windows.Forms.Button logCollapseButton;
private System.Windows.Forms.Button logExpandButton; private System.Windows.Forms.Button logExpandButton;
private System.Windows.Forms.Button evalButton; private System.Windows.Forms.Button evalButton;
private System.Windows.Forms.Label coordLabel;
} }
} }

View File

@ -2,6 +2,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.Linq;
using System.Threading; using System.Threading;
using System.Windows.Forms; using System.Windows.Forms;
@ -9,8 +10,6 @@ namespace PowerCalc
{ {
public partial class MainForm : Form public partial class MainForm : Form
{ {
private Thread evalThread;
public MainForm() => InitializeComponent(); public MainForm() => InitializeComponent();
private void logCollapseButton_Click(object sender, EventArgs e) private void logCollapseButton_Click(object sender, EventArgs e)
@ -25,14 +24,22 @@ namespace PowerCalc
splitContainer.Panel2Collapsed = false; splitContainer.Panel2Collapsed = false;
} }
private void evalButton_Click(object sender, EventArgs e) private void eval(object sender, EventArgs e) => evalBox.Invalidate();
private void log(string text)
{ {
FormBorderStyle = FormBorderStyle.FixedSingle; Invoke((MethodInvoker)delegate () { logBox.Text = text + "\r\n" + logBox.Text; });
Enabled = false; #if DEBUG
evalThread = new Thread(() => Console.WriteLine(text);
#endif
}
private void evalBox_Paint(object sender, PaintEventArgs e)
{ {
Bitmap bmp = new Bitmap(evalBox.Width, evalBox.Height); DateTime start = DateTime.Now;
Graphics g = Graphics.FromImage(bmp); try
{
Graphics g = e.Graphics;
List<Tuple<Color, List<PointF>, Expression>> lines = new List<Tuple<Color, List<PointF>, Expression>> List<Tuple<Color, List<PointF>, Expression>> lines = new List<Tuple<Color, List<PointF>, Expression>>
{ {
new Tuple<Color, List<PointF>, Expression>(Color.Red, new List<PointF>(), new Expression(calcBox1.Text)), new Tuple<Color, List<PointF>, Expression>(Color.Red, new List<PointF>(), new Expression(calcBox1.Text)),
@ -40,16 +47,23 @@ namespace PowerCalc
new Tuple<Color, List<PointF>, Expression>(Color.FromArgb(0, 192, 0), new List<PointF>(), new Expression(calcBox3.Text)), new Tuple<Color, List<PointF>, Expression>(Color.FromArgb(0, 192, 0), new List<PointF>(), new Expression(calcBox3.Text)),
new Tuple<Color, List<PointF>, Expression>(Color.FromArgb(0, 0, 192), new List<PointF>(), new Expression(calcBox4.Text)) new Tuple<Color, List<PointF>, Expression>(Color.FromArgb(0, 0, 192), new List<PointF>(), new Expression(calcBox4.Text))
}; };
try for (int i = 0; i < evalBox.Width; i += 10)
{ g.DrawLine(Pens.LightGray, i, 0, i, evalBox.Height);
for (int i = evalBox.Height; i > 0; i -= 10)
g.DrawLine(Pens.LightGray, 0, i, evalBox.Width, i);
lines.ForEach(s => lines.ForEach(s =>
{ {
s.Item3.Parameters.Add("x", 0);
s.Item3.Parameters.Add("Pi", Math.PI);
s.Item3.Parameters.Add("pi", Math.PI);
s.Item3.Parameters.Add("PI", Math.PI);
s.Item3.Parameters.Add("e", Math.E);
s.Item3.Parameters.Add("E", Math.E);
for (double i = 0; i < evalBox.Width; i++) for (double i = 0; i < evalBox.Width; i++)
{ {
try try
{ {
s.Item3.Parameters.Clear(); s.Item3.Parameters["x"] = i / 10;
s.Item3.Parameters.Add("x", i / 10);
double val = -1; double val = -1;
object tmp = s.Item3.Evaluate(); object tmp = s.Item3.Evaluate();
if (tmp.GetType() == typeof(bool)) if (tmp.GetType() == typeof(bool))
@ -80,14 +94,14 @@ namespace PowerCalc
log("Type mismatch! (" + tmp.GetType().ToString() + ")"); log("Type mismatch! (" + tmp.GetType().ToString() + ")");
float val1 = Convert.ToSingle(val); float val1 = Convert.ToSingle(val);
if (i >= 0 && i < evalBox.Width && val1 >= 0 && val1 < evalBox.Height) if (i >= 0 && i < evalBox.Width && val1 >= 0 && val1 < evalBox.Height)
s.Item2.Add(new PointF(Convert.ToSingle(i), evalBox.Height - val1)); s.Item2.Add(new PointF(Convert.ToSingle(i), evalBox.Height - (val1 * 10)));
} }
catch (Exception e1) catch (Exception e1)
{ {
#if DEBUG #if DEBUG
log(e1.ToString()); log("Value error: " + e1.ToString());
#else #else
log(e1.Message); log("Value error: " + e1.Message);
#endif #endif
break; break;
} }
@ -95,8 +109,6 @@ namespace PowerCalc
g.DrawLines(new Pen(s.Item1), s.Item2.ToArray()); g.DrawLines(new Pen(s.Item1), s.Item2.ToArray());
}); });
g.Flush(); g.Flush();
g.Dispose();
evalBox.BackgroundImage = bmp;
} }
catch (Exception e1) catch (Exception e1)
{ {
@ -104,22 +116,20 @@ namespace PowerCalc
} }
finally finally
{ {
Invoke((MethodInvoker)delegate () log("Eval completed in: " +
string.Join(".", (DateTime.Now - start).ToString().Split('.')
.Select(s =>
{ {
FormBorderStyle = FormBorderStyle.Sizable; if (!s.Contains(":") && s.Length > 4)
Enabled = true; s = s.Remove(4, s.Length - 4);
}); return s;
})
));
} }
});
evalThread.Start();
} }
private void log(string text) private void evalBox_MouseMove(object sender, MouseEventArgs e) => coordLabel.Text = new Point(e.X, evalBox.Height - e.Y).ToString();
{
Invoke((MethodInvoker)delegate () { logBox.Text = text + "\r\n" + logBox.Text; }); private void evalBox_MouseLeave(object sender, EventArgs e) => coordLabel.Text = "";
#if DEBUG
Console.WriteLine(text);
#endif
}
} }
} }