如何在表单中找到pictureBoxes并向其添加特定的EventHandler

时间:2015-08-15 05:36:37

标签: c# picturebox eventhandler

我希望有一个相册,当我点击任何图片时,它会转到另一个表格来编辑该图片。

现在我在表格中有一些图片框,名称如PB0,PB1,PB2,......

和这样的方法

private void msgShow(int id)
{
    MessageBox.Show(id.ToString());
}

当我向这样的两个pictureBox添加事件处理程序时

PB11.Click += new EventHandler((sender2, e2) => msgShow(3));
PB12.Click += new EventHandler((sender2, e2) => msgShow(4)); 

当我点击PictureBox1(PB1)时,messageBox显示

  

3

当我点击PictureBox2(PB2)时,messageBox显示

  

4

这是真的,因为我添加了18个新的pictureBox并使用此代码来执行该操作

for (int i = 0; i <= 19; i++)
{
    ((PictureBox)Form2.ActiveForm.Controls.Find("PB" + i, true)[0]).Click += new EventHandler((sender2, e2) => msgShow(i));
}

现在它错了,当我点击每个pictureBox messageBox显示

20

但我想为每个PictureBox显示唯一的数字

2 个答案:

答案 0 :(得分:1)

试试这个。用这个替换你的for循环

for (int i = 0; i <= 19; i++)
{
    var pictureBox = (PictureBox) Form2.ActiveForm.Controls.Find("PB" + i, true)[0];
    pictureBox.Tag = i;
    pictureBox.Click += (sender, args) =>
    {            
        msgShow((int)((sender as PictureBox).Tag));
    };
}

编辑:根据新评论,将类对象发送为

for (int i = 0; i <= 19; i++)
{
    var pictureBox = (PictureBox) Form2.ActiveForm.Controls.Find("PB" + i, true)[0];
    var productInfo = new ProductInfo
    {
        //This class is not mentioned into the question so I set example properties here eg.
       ImageName = "MyImage1.png",
       ImagePath = "C:\\Images\\"
       ...
    };
    pictureBox.Tag = productInfo;
    pictureBox.Click += (sender, args) =>
    {            
        msgShow((ProductInfo)((sender as PictureBox).Tag));
    };
}

现在,您的msgShow需要ProductInfo对象i-e

private void msgShow(ProductInfo pr)
{
    using(var fr = new FormProduct())
    {      
       fr.pInfo = pr;
       fr.showDialog();
    }
}

答案 1 :(得分:0)

谢谢Maarten但是 事实上我想发送一个类而不是int值。

private void msgShow(ProductInfo pr)
{
    FormProduct fr= new FormProduct();
    fr.pInfo =pr;
    fr.showDialog();
}

for (int i = 0; i <= 19; i++)
{
    ((PictureBox)Form2.ActiveForm.Controls.Find("PB" + i, true)[0]).Click += new EventHandler((sender2, e2) => msgShow(list<ProductInfo>[i]));
}

并且类无法在Tag属性中发送。