我正在尝试在我的datagridview中使用文件上传按钮,以便在单击时可以调用打开文件对话框,但是我在为datagridview添加列中获得的唯一选项是不同的按钮(如datagridviewimage,datagridviewbutton),我无法为其生成button_click方法。请让我知道是否有任何方法可以在我的数据网格视图中获得文件上传按钮。
问问题
1206 次
1 回答
2
可以添加datagridview的cellClick事件,判断cell类型。
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex<0||e.RowIndex<0)
{
return;
}
DataGridViewCell cell = dataGridView1[e.ColumnIndex, e.RowIndex];
if (cell is DataGridViewButtonCell)
{
MessageBox.Show("Test");
}
}
于 2013-07-17T01:13:02.367 回答