简体   繁体   中英

Set image source to picturebox which is added dynamically to Table Layout Panel

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM