質問編集履歴
1
誤字
title
CHANGED
File without changes
|
body
CHANGED
@@ -57,17 +57,17 @@
|
|
57
57
|
|
58
58
|
private void textBox2_TextChanged(object sender, EventArgs e)
|
59
59
|
{
|
60
|
-
k.y1 = float.Parse(
|
60
|
+
k.y1 = float.Parse(textBox2.Text);
|
61
61
|
}
|
62
62
|
|
63
63
|
private void textBox3_TextChanged(object sender, EventArgs e)
|
64
64
|
{
|
65
|
-
k.x2 = float.Parse(
|
65
|
+
k.x2 = float.Parse(textBox3.Text);
|
66
66
|
}
|
67
67
|
|
68
68
|
private void textBox4_TextChanged(object sender, EventArgs e)
|
69
69
|
{
|
70
|
-
k.y2 = float.Parse(
|
70
|
+
k.y2 = float.Parse(textBox4.Text);
|
71
71
|
pictureBox1.Invalidate();
|
72
72
|
}
|
73
73
|
|