我正在尝试在第一个表单的第二个表单的图片框上显示图像。但是我看不到任何输出....
我的 Form1.cpp 代码是这样的
#include "SecondForm.h"
SecondForm^ obj=gcnew SecondForm();
System::Drawing::Bitmap ^bmp = gcnew System::Drawing::Bitmap(grf->width,grf->height,grf->widthStep,System::Drawing::Imaging::PixelFormat::Format24bppRgb,(System::IntPtr)grf->imageData);
obj->pictureBox1->Image=obj->pictureBox1->Image->FromHbitmap(bmp->GetHbitmap());
我不知道是什么问题......
谁能帮我解决这个问题...
提前致谢