老师 好 下面的代码画出两条线段,如果要清除其中一线段,代码如何写? 谢谢 【只看到 Clear(Color),是清除所有内容,并将背景色设为参数Color指定的颜色】
Dim p As WinForm.Painter = e.Form.Controls("Painter1")Dim g As Graphics = p.Graphicsg.DrawLine(Pens.Red,30,0,30,60)g.DrawLine(Pens.Red,0,30,60,30)p.Repaint()