我已经创建了一个图片框并在其中包含图像。但是当我运行程序时,图像没有显示任何内容,只是在我运行程序时签署“x”(未加载)。
我哪里做错了?
这是代码:
private void Images(object sender, EventArgs e)
{
PictureBox pb1 = new PictureBox();
pb1.ImageLocation = "SamuderaJayaMotor.png";
pb1.Location = new Point(100, 100);
pb1.SizeMode = PictureBoxSizeMode.StretchImage;
pb1.Size = new Size(200, 200);
this.Controls.Add(pb1);
}
这是我运行程序时的屏幕截图: