我有一个Bitmaps和PictureBox列表。我想将PictureBox的图像添加到列表中。 这段代码:
pictureBox1.Load(openFileDialog1.FileName);
loadedImages.Add(new Bitmap(pictureBox1.Image));
导致NullReference异常:
未处理的类型' System.NullReferenceException'发生在Tutorial_Picture_Viewer.exe
中附加信息:未将对象引用设置为对象的实例。
非常感谢任何帮助。