我试图在FlowControl上设置PictureBox的图像,但是我只能访问背景图像属性。
if (File.Exists(filePath))
{
flowProd.Controls["picture_product"].BackgroundImage = Image.FromFile(filePath);
}
.Image
属性对我来说无法使用。有谁知道我设置我的图片框图像的方法?
答案 0 :(得分:1)
FlowControl中的控件是基本控件类型,您必须转换控件才能查看所有属性。 〔实施例:
((PictureBox)flowProd.Controls["picture_product"]).Image = Image.FromFile(filePath);