标签: vb.net
我正在使用VB.NET表单应用程序,我需要检查PictureBox当前是否有图像。我该怎么做?
由于
答案 0 :(得分:17)
If Not pictureBox.Image is Nothing Then //do stuff here Else //do other stuff End If