我想控制我的图片对象是null
还是if(pictureBox.Image == null)
。 {{1}}适用于C#,但我找不到WPF的代码。我该怎么写呢?
答案 0 :(得分:1)
你可以这样做: -
private PictureBox p1= null;
现在您可以将值设置为null
p1= (PictureBox)image;
最后你可以用它作为: -
if(p1 == null)
答案 1 :(得分:1)
WPF没有PictureBox
控件。相当于Image
(as shown here),所以你可以这样做:
if(myImage.Source == null) ...
除非你正在做一些更复杂的事情并在WPF中托管WinForm控件?