我正在使用Textbox1.Text = DataGridView1.RowCount()
在我的vb.net应用中显示(在Textbox1中)datagridview中的项目总数。现在我希望Textbox2在datagridview上显示位置。我该怎么做?我想要50个中的6个。所以" 6"将显示在Textbox1上。你找我了吗?
答案 0 :(得分:1)
你应该在下面的事件中处理
Private Sub dgv_SelectionChanged(sender As Object, e As EventArgs) Handles dgv.SelectionChanged
If dgv.CurrentRow isnot Nothing
Textbox1.Text = dgv.CurrentRow.Index + 1
End If
End Sub
答案 1 :(得分:0)
For i As Integer = 0 To DataGridView1.RowCount
i = +i
Textbox1.Text = i
Next
答案 2 :(得分:-1)
使用DataGridView.CurrentRow.Index
属性。