string picPath = Environment.CurrentDirectory;
Bitmap MyImage = new Bitmap(picPath + @"\top1.bmp");
this.pictureBoxTop.SizeMode = PictureBoxSizeMode.StretchImage;
this.pictureBoxTop.Image  = MyImage;

解决方案 »

  1.   

    this.pictureBox1.Image = Image.FromFile(@"d:\wzf001.jpg");
      

  2.   

    你打开你的窗体的.resx文件看看,里面有下面这一行<data name="pictureBox1.Image" type="System.Drawing.Bitmap, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" mimetype="application/x-microsoft.net.object.bytearray.base64">
    <value>这里就保存了图片的信息</value>
      

  3.   

    InitializeComponent里面有这么两句是加载资源信息的,picturebox也是在这里加上资源的,
    资源文件当然在这里就是Form1.resx了,代码如下:System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
      

  4.   

    比较爱用:
    Bitmap bm=new Bitmap(Filename);
    pBox.image=bm;
    p