[求助]简单问题求助。。。
Graphics dc = this.CreateGraphics();Pen GreenPen = new Pen(Color.Green, 3);
dc.DrawLine(GreenPen,float.Parse(this.textBox1.Text),float.Parse(this.textBox2.Text),float.Parse(this.textBox3.Text),float.Parse(this.textBox4.Text));
为什么最后一段编译通过,但运行时说传递的参数类型不对呢?