现在我在表格中有一些图片框,名称如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# – 如何在表单中找到pictureBoxes并为其添加特定的EventHandler全部内容,希望文章能够帮你解决c# – 如何在表单中找到pictureBoxes并为其添加特定的EventHandler所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)