views:

16

answers:

1

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?

+1  A: 

Hi,
do it like this

myDataGridView1.AllowUserToAddRows = fales

Best Regards
Iordan

IordanTanev