在UserControl中设置ImageBox的图像 - c#

时间:2018-06-19 10:04:33

标签: c# winforms picturebox

我试图在FlowControl上设置PictureBox的图像,但是我只能访问背景图像属性。

 if (File.Exists(filePath))
 {
      flowProd.Controls["picture_product"].BackgroundImage = Image.FromFile(filePath);
 }

.Image属性对我来说无法使用。有谁知道我设置我的图片框图像的方法?

1 个答案:

答案 0 :(得分:1)

FlowControl中的控件是基本控件类型,您必须转换控件才能查看所有属性。 〔实施例:

((PictureBox)flowProd.Controls["picture_product"]).Image = Image.FromFile(filePath);