如何添加Datagridview的特定单元格

本文关键字:单元格 Datagridview 何添加 添加 | 更新日期: 2023-09-27 18:06:41

顺便说一下,我使用Datagridview,我在添加/传递到特定单元格的部分堆叠:在我的第0列:col_a,第一列:col_b;第二列:col_c,第三栏:col_d .

这是我的代码:

     '//pass this to  column b
     Dim fcol As String = txtorder.Text
     '//pass this to  column c
     Dim scol As String = txtQuant.Text
     Dim row As String ()= New String (){fcol,scol}
     DatagridView1.Rows.Add(row)

如何添加Datagridview的特定单元格

顺便说一下,这是我在网上找到的答案,它也适合像我这样的初学者,希望它能帮助:

Dim fcol As String = txtOrder.Text
Dim scol As String = txtQuant.Text
Dim newcol As Integer = Datagridview1.Rows.Add()
Datagridview1.Rows.Item(n).Cells(2).Value = New string() {fcol}
Datagridview1.Rows.Item(n).Cells(3).Value = New string() {scol}