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
DataGridView
SelectionMode
FullRowSelect
Try setting DataGridView.AllowUserToAddRows = false in constructor after InitializeComponent().
DataGridView.AllowUserToAddRows = false
InitializeComponent()