我已经完成了关于如何从datagridview将图像插入到图片框中的代码,但问题是,它只显示第一行的图像,这里是我的代码
private void dataGridView1_SelectionChanged(object sender, EventArgs e)
{
if (dataGridView1.SelectedRows.Count > 0)
{
byte[] imagebyte = (byte[])dataGridView1.Rows[0].Cells["Picture"].Value;
MemoryStream ms = new MemoryStream();
ms.Write(imagebyte, 0, imagebyte.Length);
Bitmap bmp = new Bitmap(ms);
pictureBox2.Image = bmp;
}
}
我认为问题出在byte[] imagebyte = (byte[])dataGridView1.Rows[0].Cells["Picture"].Value;
代码中,我不知道将行[0]替换为选定索引的代码。
谢谢:))
答案 0 :(得分:2)
在if
语句后执行此操作:
var row = dataGridView1.SelectedRows[0];
byte[] imagebyte = (byte[])row.Cells["Picture"].Value;