下面的代码将选定单元格的所有行索引放入ListBox。它运作良好,但看起来很麻烦。
我不知道为什么注释循环将不起作用。
private void dataGridView1_SelectionChanged(object sender, EventArgs e)
{
listBox1.Items.Clear();
DataGridView dgv = (DataGridView)sender;
List<int> indices = new List<int>() { };
foreach (DataGridViewCell cell in dgv.SelectedCells)
{
indices.Add(cell.RowIndex);
}
foreach (int rowindex in indices.Distinct())
{
listBox1.Items.Add(rowindex);
}
//The following loop attempts to do the same, but wont work.
//foreach (int rowindex in dgv.SelectedCells.AsQueryable().Select(x => x.RowIndex).Distinct())
//{
// listBox1.Items.Add(rowindex);
//}
}
最佳答案
尝试将SelectedCells强制转换为IEnumarable<DataGridVewCell>
,它应该可以工作。
dgv.SelectedCells.Cast<DataGridViewCell>().Select(x => x.RowIndex).Distinct()
关于c# - 在DataGridViewSelectedCellCollection上的LINQ查询,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43383137/