我正在尝试从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--;
}
}
我该怎么办?