作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我有这个 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/
我是一名优秀的程序员,十分优秀!