在C#中的两个Winform之间传递图像

时间:2018-09-25 10:00:00

标签: c#

这是我的问题。我想将图像从一种形式转换为另一种形式。此方法可以正确地传递字符串,但在这种情况下它不起作用,并且也没有显示任何错误。我已经声明图像为全局变量。

  private void button3_Click(object sender, EventArgs e)
    {
        previouscar p = new previouscar();
        p.Show();
        this.Hide();
        image = pictureBox1.Image;
    }

这是接收表单代码

 private void previouscar_Load(object sender, EventArgs e)
    {
        pictureBox1.Image = Image.FromFile(@"C:\Users\Acer\Documents\Visual Studio 2015\Projects\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\1.jpg");
        pictureBox2.Image = car.image;
    }

0 个答案:

没有答案