我有2个windowsForms让我们称之为form1和form2。 form1由一个图片框和一个按钮组成。当我点击按钮form2打开。现在form2由一个网格组成,根据我点击网格的位置,x和y坐标返回到form1。基于这些坐标,我向pictureBox添加了一个图像。但图像并没有被添加!我在这里缺少什么吗?
form2中mouseDownEvent内的代码
Form1 f1 = new Form1();
f1.openImage(x,y);
form1中的代码
internal void openImage(int x, int y)
{
string ogFileName = "r" + x.ToString() + "c" + y.ToString();
string imageFilePath = ogFileName + "." + extension;
MessageBox.Show(imageFilePath); //I can see the correct path here
pictureBox1.Image = Image.FromFile(imageFilePath);
}//extension is a static variable declared outside this function.
答案 0 :(得分:1)
Form1 f1 = new Form1();
此行仅创建Form1的新实例
您可以做的是添加一个Form1变量,该变量将引用您当前的表单。
您在构造函数中初始化它,然后在按钮单击中将其传递给Form2
public partial class Form1 : Form
{
Form1 form1; // form1 will store the reference of Form1
public Form1()
{
form1 = this; // We initialize form1 in the constructor
InitializeComponent();
}
// button to open form2
private void button1_Click(object sender, EventArgs e)
{
Form2 form2 = new Form2(form1); // We open form2 with form1 as parameter
form2.Visible = true;
}
public void openImage(int x, int y)
{
}
}
现在在Form2中,您只需要添加一个将在构造函数中初始化的Form1变量。
然后您可以使用它,因为它代表Form1的当前实例
public partial class Form2 : Form
{
Form1 form1; // Reference to form1
public Form2(Form1 form1)
{
this.form1 = form1; // We initialize form1
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
// we call openimage from form1
form1.openImage(130, 140);
}
}
我用标签测试了这个例子,它运行正常,所以我认为图片框应该没有问题