To hide the new row in a DataGridView, you can set the AllowUserToAddRows
property to false
:
dataGridView.AllowUserToAddRows = false;
Knowledge is Power!
To hide the new row in a DataGridView, you can set the AllowUserToAddRows
property to false
:
dataGridView.AllowUserToAddRows = false;