从TableLayoutPanel中删除行

时间:2013-05-04 13:22:02

标签: c# winforms row tablelayout

我正在尝试从TableLayoutPanel中删除所有行(在运行时自动添加)但我似乎得到了这个错误:

  

未将对象引用设置为对象的实例。

以下是我使用的代码:

    public void RemoveRows()
    {
     for (int row = BibTable.GetRowHeights().Length-1; row >= 0; row--)
        {
            BibTable.RowStyles.RemoveAt(row); //here is where i get the error
            BibTable.RowCount--;
        }
    }

我该怎么办?

0 个答案:

没有答案