通过按钮的click事件,将picturebox中的图片另存到本地,弹出另存为对话框,选择存放的位置。

解决方案 »

  1.   

      this.saveFileDialog1.ShowDialog();
               string Path = this.saveFileDialog1.FileName;
                if(Path !="")
                this.pictureBox1.Image.Save(Path);
      

  2.   

    楼上回帖真快!比较简单的,只需要利用PICTUREBOX的SAVE属性就可以了。
      

  3.   

    pictureBox1.Image.Save方法
    看一楼
      

  4.   

    this.saveFileDialog1.ShowDialog(); 
              string Path = this.saveFileDialog1.FileName; 
                if(Path !="") 
                this.pictureBox1.Image.Save(Path);