如何从 DataGridView 的特定列获取选定单元格的计数

发布于 2024-12-13 04:16:03 字数 423 浏览 3 评论 0原文


我正在寻找一种从特定 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蒲公英的约定 2024-12-20 04:16:03

找到了解决方法。现在,我正在从网格中获取所有选定的单元格,并取决于对其进行操作的列索引。

Found workaround to this. Now I am fetching all selected cells from the grid and depending upon the column index operating on it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文