双击后访问datagridview的元素

时间:2012-05-29 14:23:44

标签: c# datagridview

我有一个DataGridView(c#)。我想在双击后访问所选行的每个成员。

知道怎么做吗?

由于

2 个答案:

答案 0 :(得分:1)

连接数据网格的CellDoubleClick事件。 DataGridViewCellEventArgs包含单击的行和列。如果行索引为-1,则单击标题。

private void MyDataGridView_CellDoubleClick(object sender,
    DataGridViewCellEventArgs e)
{
    if (e.RowIndex < 0)
    {
        // header was clicked
    }
    else
    {
        // data row was clicked, can access the row contents like this
        var row = MyDataGridView.Rows[e.RowIndex];
        var cell = row[0];
    }
}

答案 1 :(得分:0)

private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
   foreach(var item in dataGridView1.SelectedRows)
   {

   }
}