0

我正在尝试从 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--;
        }
    }

我应该怎么办?

4

0 回答 0