我正在学习VB.NET.
尝试设置CurrentCell的值时,我遇到了DataGridView组件的问题.我想要做的是:
我有一个DataGridView值.我想在我的表单中创建一个按钮,当点击它时,我想将选择从当前行更改为下一行.要解释更多,通过单击我的按钮,我想模拟鼠标单击DataGridview的效果.
我希望你能帮帮我,
谢谢!
也许是这样的:
If DataGridView1.RowCount > 0 Then Dim MyDesiredIndex As Integer = 0 If DataGridView1.CurrentRow.Index < DataGridView1.RowCount - 1 Then MyDesiredIndex = DataGridView1.CurrentRow.Index + 1 End If DataGridView1.ClearSelection() DataGridView1.CurrentCell = DataGridView1.Rows(MyDesiredIndex).Cells(0) DataGridView1.Rows(MyDesiredIndex).Selected = True End If
注1:也许这两行不是必需的.我还没证明
DataGridView1.ClearSelection() DataGridView1.CurrentCell = DataGridView1.Rows(MyDesiredIndex).Cells(0)
注2:请注意,如果我们在最后一行,它会转到第一行