如何从 DataGridView 的特定列获取选定单元格的计数
我正在寻找一种从特定 DataGridView 列获取选定单元格计数的方法。 在 MSDN 链接。
我尝试使用这段代码,但它从整个网格返回选定的单元格计数。
SelectedCellsCount = dataGridView1.Columns[<<Column Name >>].DataGridView.SelectedCells.Count;
谁能帮我完成这件事吗?
提前致谢。
问候,
维杰
I am looking for a way to get selected cells count from a specific DataGridView column.
I am able to retrieve all the selected cells from the DataGridView, but not from the specific column, with the help of MSDN link.
I tried using this piece of code, but it is returning selected cell count from entire grid.
SelectedCellsCount = dataGridView1.Columns[<<Column Name >>].DataGridView.SelectedCells.Count;
Can anyone please help me out to get this done ?
Thanks in advance.
Regards,
Vijay
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了解决方法。现在,我正在从网格中获取所有选定的单元格,并取决于对其进行操作的列索引。
Found workaround to this. Now I am fetching all selected cells from the grid and depending upon the column index operating on it.