清除pictureboximage

时间:2009-09-11 06:29:38

标签: vb.net

如何清除图片框中的图像以绘制新图像。

3 个答案:

答案 0 :(得分:2)

假设您在界面上有两个按钮来清除图像和重绘图像,您可以在其点击处理程序上使用以下功能。

<强> VB

Private Sub ClearImage()
        PictureBox1.Image = Nothing
    End Sub

    Private Sub SetImage(ByVal img As Image)
        PictureBox1.Image = img
    End Sub

<强> C#

public void ClearImage()
{
 PictureBox1.Image = null;
}

public void SetImage( Image img)
{
 PictureBox1.Image = img;
}

答案 1 :(得分:1)

使用宽度和高度值创建一个新的Bitmap对象。

PictureBox1.Image = New Bitmap(100, 100)

答案 2 :(得分:0)

PictureBox1.Image = Nothing