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 に答える