1

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

我可以制作一些循环来遍历单元格并测试选择(选中)哪个单元格吗?

语言 c#。

4

2 回答 2

3
DataGridViewSelectedCellCollection selectedCells = myDataGridView.SelectedCells;

请参阅以下示例:如何:获取 Windows 窗体 DataGridView 控件中的选定单元格、行和列

于 2012-05-07T08:34:02.000 回答
2

使用DataGridView.SelectedCells属性。

foreach(DataGridViewCell cell in dataGridView.SelectedCells)
{
    //do something
}
于 2012-05-07T08:33:50.943 回答