[ C#学习日常 ] Graphics绘线擦除问题
设有两个点point1与point2Point point1=new Point(0, 0);Point point2=new Point(200,200);使用 Graphics 画板以及 DrawLine 可以两点之间的绘制一条线段using (Graphics graphics = this.CreateGraphics()) { graphics.DrawLine...