检查图片框值是否为空

时间:2013-11-26 05:49:39

标签: c# winforms

我使用Visual Studio IDE开发了一个可视化的C#窗体应用程序。

我的问题是如何检查用户是否选择了图像。

我粗略地检查图像像一个字符串,整数对象,但它不起作用

if(myPictureBox.Image == NULL){
    //The Image is Null
}

1 个答案:

答案 0 :(得分:6)

你可以这样检查

bool isNullOrEmpty = myPictureBox == null || myPictureBox.Image == null;

或者您可以创建自己的扩展方法

public static bool IsNullOrEmpty(this PictureBox pb)
{
    return pb == null || pb.Image == null;
}