-->

Set image source to picturebox which is added dyna

2019-08-02 16:47发布

问题:

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:

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