迭代 DataGridViewRow 列

发布于 2024-11-07 15:16:18 字数 64 浏览 0 评论 0原文

如何迭代 DataGridViewRow 列?我只想获取我拥有的列数并遍历它们并获取值。

How can I iterate through DataGridViewRow columns? I just want to get the number of columns that I have and go through them and get the values.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

呆橘 2024-11-14 15:16:18

您可以使用 Cells 属性获取行的所有值

foreach(DataGridViewCell cell in row.Cells)
{
    get value by    cell.Value
}

,并且列数等于单元格数

You can use Cells property to get all values row have

foreach(DataGridViewCell cell in row.Cells)
{
    get value by    cell.Value
}

and number of columns is equal to number of cells

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