我正在使用 DataGridView 在 FullRowSelect 模式下显示数据。
我的代码如下:
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
foreach (DataGridViewRow row in dataGridView1.SelectedRows)
{
currentColumn1Value = row.Cells[0].Value.ToString();
currentColumn2Value = row.Cells[1].Value.ToString();
//do something with the values
}
}
该视图只有 2 列,如果选择了左列中的单元格,它将返回值。但是,如果我通过单击右列来选择该行,则值将显示为空。
使用此行选择方法提取所选单元格值的最佳方法是什么?