2012-04-13 67 views
1

我有一個DataGridView 4列。c#DataGridView從行/列獲取內容

當用戶雙擊該行時,我想從點擊行的第一列中恢復數據。

private void ticketsDataGridView_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e) 
    { 
     MessageBox.Show("Row " + e.RowIndex); // gets me the row selected 

    } 

如何獲取所選行的列?

回答