本文介绍了如何从图片框中删除矩形graphis的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好



如何从图片框中删除矩形图形,我可以使用以下代码绘制矩形图形:



Dim g As System.Drawing.Graphics

Dim cyan As New SolidBrush(Color.Yellow)

Dim rect As New Rectangle(x1, y1,15,15)

g.FillRectangle(青色,矩形)



是否可以删除我绘制的矩形图形,请告诉我怎么做。



谢谢。

Hello

how to remove the rectangle graphics from picture box, I am able to draw a rectangle graphics using this code:

Dim g As System.Drawing.Graphics
Dim cyan As New SolidBrush(Color.Yellow)
Dim rect As New Rectangle(x1, y1, 15, 15)
g.FillRectangle(cyan, rect)

Is it possible to remove this rectangle graphics i had draw, Please tell me how to do so.

Thanks.

推荐答案



这篇关于如何从图片框中删除矩形graphis的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 14:29