将按钮对象添加到DataGridView

时间:2019-05-17 15:52:05

标签: c# datagridview

我需要帮助,将按钮添加到我的DataGridView的单元格中。它与我使用的代码不兼容(请参见下文)。

我遇到错误:No best type found for implicity-typed Array

DataGridViewButtonCell btn = new DataGridViewButtonCell();
this.dataGridView1[0,100] = btn;
this.dataGridView1[0,100].Value = "Button";

我要完成的工作是在该行的第二列添加一个按钮:(但不起作用)

dataGridView1.Rows.Add(new[] { "A:", (button goes here) , textbox1.Substring(648 , 2) })

1 个答案:

答案 0 :(得分:1)

尝试一下:

int index = DataGridView1.Rows.Add("Test1", "Test2", "Test3");
DataGridView1.Rows[index].Cells[2] = New DataGridViewButtonCell(){ Value = DataGridView1.Rows[0].Cells[2].Value}