我創建了一個循環文件夾並檢索每個圖像文件並在窗體上繪製一個picturebox的函數。 下面是函數:C#:獲取picturebox的文件路徑onclick
private void Create_Controls(string Img_path)
{
PictureBox p = new PictureBox();
p.Size = new Size(138, 100);
p.Location = new Point(6, 6);
p.BackgroundImage = Image.FromFile(Img_path);
p.BackgroundImageLayout = ImageLayout.Stretch;
this.Controls.Add(p);
}
所以我需要做的是:每當我在的形式,與圖像文件路徑的消息彈出任何PictureBox的點擊。
所以我認爲有關添加自定義事件:
p.Click += delegate { Pop_Up(); };
和
private void Pop_Up()
{
/* POP UP MESSAGE WITH Picturebox image file path*/
}
非常感謝,它幫助和工作。 – 2012-07-30 13:00:51