我只想拥有一个动态gridview
,每行包含3
个按钮。我只想在此网格视图中有5
行。我使用此code
将数据填充到一行,但我不知道如何向每行添加按钮?有人可以帮助我吗?
DataGridViewRow row = new DataGridViewRow();
row.CreateCells(scanImagesGrid);
row.Cells[0].Value = "1";
row.Cells[1].Value = "عکس شخصی";
row.Cells[2].Value= //my button no1
row.Cells[3].Value= //my button no2
row.Cells[4].Value= //my button no4
scanImagesGrid.Rows.Add(row);
我还想知道如何响应每行中每个按钮的Click事件。 非常感谢