如何检查dataGridView中的哪个单元格被选中?

时间:2012-05-07 08:30:03

标签: c# select datagridview

我想从dataGridView中的选定单元格发送多封邮件,但不知道如何找出选择的单元格,所以问题是如何找出选择了哪些单元格?

我可以制作一些循环来迭代细胞并测试选择哪个细胞(检查过)?

语言c#。

2 个答案:

答案 0 :(得分:2)

使用DataGridView.SelectedCells属性。

foreach(DataGridViewCell cell in dataGridView.SelectedCells)
{
    //do something
}

答案 1 :(得分:1)

DataGridViewSelectedCellCollection selectedCells = myDataGridView.SelectedCells;

请参阅以下示例:How to: Get the Selected Cells, Rows, and Columns in the Windows Forms DataGridView Control