将图像添加到vb.net中的datagridview image coloumn

时间:2014-12-15 10:19:35

标签: vb.net

我正在尝试使用以下代码将图像添加到datagridview的image列,但它返回错误

  

system.argumentexception:参数无效

ofdLogoImage.ShowDialog()
vrPicHolder = IO.File.ReadAllBytes(ofdLogoImage.FileName)
dgvLogo.Item(3, dgvLogo.Rows.Count - 1).Value = vrPicHolder

1 个答案:

答案 0 :(得分:0)

您应该将Image传递给该单元格。

您可以使用此代码

ofdLogoImage.ShowDialog()
Dim vrPic = Image.FromFile(ofdLogoImage.FileName)
dgvLogo.Item(3, dgvLogo.Rows.Count - 1).Value = vrPic