DataGridView without selected row at the beginning

后端 未结 12 1423
栀梦
栀梦 2021-02-12 14:23

In my WinForms I have DataGridView. I wanted to select full row at once so I set SelectionMode as FullRowSelect. And now I have problem, b

12条回答
  •  轮回少年
    2021-02-12 14:48

    This work for me for clear selection on databind

    Protected Sub GridCancel_DataBinding(sender As Object, e As EventArgs) Handles GridCancel.DataBinding
        GridCancel.SelectedIndex = -1
    
    End Sub
    

提交回复
热议问题