gpt4 book ai didi

c# - (C#) 数据 GridView : How to get Selected Count with cells AND rows?

转载 作者:行者123 更新时间:2023-12-02 17:14:14 25 4
gpt4 key购买 nike

所以我有这个 DataGridView

还有这段代码:

if(dataGridView1.SelectedRows.Count > 1)
{
MessageBox.Show("Error: More than one value selected");
return false;
}

如果我有 2 个完全选择的行,它正确地计数为 2。但我想检查是否选择了来自 2 行或更多行的任何单元格

换句话说:在我的图片中我当前的选择正在返回 1,但我希望它返回 2。

谢谢。

修复后编辑:工作代码:

if(dataGridView1.SelectedCells.Cast<DataGridViewCell>().Select(c => c.RowIndex).Distinct().Count() > 1)
{
MessageBox.Show("Error: More than one value selected");
return false;
}

最佳答案

获取包含选定单元格的行数:

int count = dataGridView1.SelectedCells.Cast<DataGridViewCell>()
.Select(c => c.RowIndex).Distinct().Count();

检查是否选择了多行:

var selectedCells = dataGridView1.SelectedCells;
bool check = selectedCells.Count > 0
&& selectedCells.Cast<DataGridViewCell>().Any(c => c.RowIndex != selectedCells[0].RowIndex);

关于c# - (C#) 数据 GridView : How to get Selected Count with cells AND rows?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47357051/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com