作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要一个相册,当我点击任何图片时,它会转到另一个表单来编辑该图片。
现在我在表单中有一些 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/
我是一名优秀的程序员,十分优秀!