vb.net 使用DataGridView的Columns集合和HeaderText属性,获取对应列的索引,然后遍历DataGridView的所有行,获取对应单元格的值。直接可以使用的方法
时间: 2024-03-19 11:45:26 浏览: 99
C#和VB.Net DataGridView用法總結
您可以使用以下代码来遍历DataGridView的所有单元格并获取其值:
```vb.net
For Each row As DataGridViewRow In DataGridView1.Rows
For Each cell As DataGridViewCell In row.Cells
'根据列的HeaderText属性来获取对应列的索引
Dim columnIndex As Integer = DataGridView1.Columns(cell.ColumnIndex).HeaderText
'获取单元格的值
Dim cellValue As String = cell.Value.ToString()
'在这里对获取到的单元格值进行处理
Next
Next
```
其中,`DataGridView1` 是您的DataGridView控件名称,`HeaderText`属性可以通过列的索引获取到对应列的标题。在获取到单元格的值之后,您可以对其进行相应的处理,比如存储到数据库中或者进行其他操作。
阅读全文