如何禁用DatagridView中的最后一个空行?

时间:2010-09-08 06:12:12

标签: c# datagridview

对于C#窗体,有一个名为DataGridView的工具。

如果我们使用它来显示数据,它会显示一个额外的行。

如果我们有3行数据,则显示4行。第四行是一个空行。

我想知道如何禁用它......或隐藏它?

3 个答案:

答案 0 :(得分:85)

这样做:

myDataGridView1.AllowUserToAddRows = false

答案 1 :(得分:6)

在DataGridView属性(控件右上角的小箭头)中取消选中Enable Adding,或在屏幕右侧的Properties窗口中将AllowUserToAddRows设置为False。

答案 2 :(得分:0)

在项目的[设计]视图中,单击DataGridView1,然后从(属性)中进行设置,如下所示:

enter image description here

-或-

使用此代码:

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