How to disable the last blank line in DatagridView?

Viewed 57065

For C# Window Form, there is a tool called DataGridView.

If we use that to display data, it shows an extra line.

If we have 3 rows of data, it shows 4 rows. the 4th row is a blank row.

I wanna know how to disable it.. or hide it?

3 Answers

From your Project [Design] view click on the DataGridView1 and from the (Properties) set it like this:

enter image description here

-Or-

Use this code:

DataGridView1.Rows.RemoveAt(DataGridView1.CurrentCell.RowIndex);
Related