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
The event to set for disabled selected row at start is this, and manage a FLAG to stop the ClearSelection
private void dataGridView_SelectionChanged(object sender, EventArgs e) { if (FLAG==true) { dataGridView.ClearSelection(); FLAG=false; } }