Set image source to picturebox which is added dyna

2019-08-02 16:32发布

I followed instructions from this page to insert controls to tableLayoutPanel. http://goo.gl/SVKf8D

I am using this code to try to add a dynamic picturebox and set it's source:

    tableLayoutPanel1.Controls.Add(new PictureBox() { Image.FromFile(TableLayoutPanelTool.Properties.Resources.BaldGuyImage)}, 0, 0);

I cannot insert image source to picturebox this way.

What I need: A way to set the image to the Picturebox that I have added dynamically to the TableLayoutview

note:it is ok to give source directly.Something like source= C:/Projects/bin/debug

1条回答
够拽才男人
2楼-- · 2019-08-02 16:53

If you have added the image into project's resources file, you can access them using Properties.Resources class. In this case, you can directly assign the resource into picturebox.image property:

tableLayoutPanel1.Controls.Add(new PictureBox() { Image = TableLayoutPanelTool.Properties.Resources.BaldGuyImage}, 0, 0);

You could read more here and also from here

查看更多
登录 后发表回答