在DataGrid视图中在vb.net中当前行的正下方添加新行

时间:2019-01-15 13:14:15

标签: vb.net

我有一个数据网格视图,其中有一个按钮列。我想通过单击按钮添加新行。

通常,这会在datagrid视图的底部添加新行。我只想将其添加到单击按钮的当前行的下方。请帮忙。

关于, 苏拉杰

1 个答案:

答案 0 :(得分:0)

在“按钮点击”事件中尝试此操作

If DataGridView1.Rows.Count - 1 = Me.DataGridView1.CurrentRow.Index() Then Me.DataGridView1.Rows.Insert(Me.DataGridView1.CurrentRow.Index(), 1) Else Me.DataGridView1.Rows.Insert(Me.DataGridView1.CurrentRow.Index() + 1, 1) End If