我在windows窗体上有一个datagridview控件。它的selectionmode属性设置为cellselect。
我要基于选定单元格对DataGridViewRow进行操作。DataGridView控件已绑定到数据源。
如何根据所选单元格获取行集合?

最佳答案

List<DataGridViewRow> rowCollection = new List<DataGridViewRow>();

foreach(DataGridViewCell cell in dataGridView.SelectedCells)
{
    rowCollection.Add(dataGridView.Rows[cell.RowIndex];
}

09-07 01:45