如果我有以下代码,一切都会有效 - 没有例外。
_imgOutput.Bitmap = _irViewAreaBitmap;
ibxOutput.Image = _imgOutput;
如果不是上面的话我做了这个(其他一切都一样):
pictureBox1.Image = _irViewAreaBitmap;
我收到“InvalidOperationException:Object current ...”。
我很困惑因为我认为两个代码会同时尝试访问_irViewAreaBitmap,一个可以成功使用它,而另一个则不能!
谢谢!