VB.NET如何检查PictureBox是否包含图像?

时间:2009-04-16 14:08:51

标签: vb.net

我正在使用VB.NET表单应用程序,我需要检查PictureBox当前是否有图像。我该怎么做?

由于

1 个答案:

答案 0 :(得分:17)

If Not pictureBox.Image is Nothing Then
    //do stuff here
Else
    //do other stuff
End If