编程语言
首页 > 编程语言> > c# – 如何在表单中找到pictureBoxes并为其添加特定的EventHandler

c# – 如何在表单中找到pictureBoxes并为其添加特定的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显示唯一的数字

解决方法:

试试这个.用这个替换你的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();
    }
}

标签:c,picturebox,eventhandler
来源: https://codeday.me/bug/20190706/1399257.html