将PictureBox.Image添加到位图列表

时间:2015-07-02 13:31:42

标签: c# image bitmap

我有一个Bitmaps和PictureBox列表。我想将PictureBox的图像添加到列表中。 这段代码:

pictureBox1.Load(openFileDialog1.FileName);
loadedImages.Add(new Bitmap(pictureBox1.Image));

导致NullReference异常:

  

未处理的类型' System.NullReferenceException'发生在Tutorial_Picture_Viewer.exe

中      

附加信息:未将对象引用设置为对象的实例。

非常感谢任何帮助。

0 个答案:

没有答案