如何在form_Load
上的vb.net中选择完整的第一行datagridview答案 0 :(得分:10)
我不确定是否所有这些行都是严格必要的,但这应该有效:
If MyDataGridView.RowCount > 0 Then
MyDataGridView.ClearSelection()
MyDataGridView.CurrentCell = Me.Rows(0).Cells(0)
MyDataGridView.Rows(0).Selected = True
End If
啊,如果要选择整行,DataGridView选择模式属性必须为FullRowSelect
答案 1 :(得分:1)
DataGrid1.Rows(0).Selected = True
答案 2 :(得分:0)
DataGridView.SelectedIndex = 0