5

我有一个包含 5 列的完整 dataGridView。

现在,我想在这些列的某些单元格中绘制位图。

这应该是这样的:

在此处输入图像描述

我目前尝试过:

dataGridView1.Rows.Add(   ) ;

你能帮我在 dataGridView.Rows 的新行中绘制位图吗?

4

1 回答 1

2

尝试这个:

dataGridView1.Columns.Add("columnName1", "Column 1 Header");
dataGridView1.Columns.Add("columnName2", "Column 2 Header");

var row1 = new DataGridViewRow();
row1.Cells.Add(new DataGridViewImageCell { Value = new Bitmap(@"C:\Path\to\image.jpg") });
row1.Cells.Add(new DataGridViewTextBoxCell { Value = "string" });
dataGridView1.Rows.Add(row1);

var row2 = new DataGridViewRow();
row2.Cells.Add(new DataGridViewTextBoxCell { Value = "string"});
row2.Cells.Add(new DataGridViewImageCell { Value = new Bitmap(@"C:\Path\to\image.jpg") });
dataGridView1.Rows.Add(row2);
于 2012-09-30T13:36:03.980 回答