gpt4 book ai didi

c# - 如何在表单中找到图片框并为它们添加特定的事件处理程序

转载 作者:行者123 更新时间:2023-11-30 12:43:08 25 4
gpt4 key购买 nike

我想要一个相册,当我点击任何图片时,它会转到另一个表单来编辑该图片。

现在我在表单中有一些 pictureBoxes,名称如 PB0、PB1、PB2...

还有这样的方法

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

当我像这样向两个图片框添加事件处理程序时

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

当我点击 PictureBox1 (PB1) 时,消息框显示

3

当我单击 PictureBox2 (PB2) 时,消息框显示

4

这是真的,因为我添加了 18 个新的 pictureBoxes 并使用这段代码来做到这一点

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

现在它错了,当我点击每个 pictureBox 消息框时显示

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# - 如何在表单中找到图片框并为它们添加特定的事件处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32021900/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com