📅  最后修改于: 2023-12-03 15:20:57.174000             🧑  作者: Mango
在使用 DataGridView 控件时,经常需要获取或者设置某一行的索引位置。本文将介绍如何使用 VB.Net 对 DataGridView 控件进行行索引的设置。
使用 .CurrentRow.Index
属性可以获取当前选中行的索引位置。示例代码如下:
Dim rowIndex As Integer = myDataGridView.CurrentRow.Index
使用 .Rows
集合可以设置指定行的索引位置,具体步骤如下:
Dim rowToBeMoved As DataGridViewRow = myDataGridView.Rows(5)
myDataGridView.Rows.RemoveAt(5)
myDataGridView.Rows.Insert(3, rowToBeMoved)
示例代码如下:
Dim rowToBeMoved As DataGridViewRow = myDataGridView.Rows(5)
myDataGridView.Rows.RemoveAt(5)
myDataGridView.Rows.Insert(3, rowToBeMoved)
以上代码会将原来第 6 行的数据移动至第 4 行。
DataGridView
控件中已经存在该行。以上是在 VB.Net 中对 DataGridView 控件进行行索引设置的介绍。涉及到 C# 语言的程序员可以根据本文的示例代码进行相应的语法转换。