删除最后一行时遇到问题。
这是代码
private void ponistiPrethodni_Click(object sender, EventArgs e)
{
int lastEntry = glProstor.Rows.Count - 1;
System.Diagnostics.Debug.WriteLine(lastEntry);
glProstor.Rows.RemoveAt(lastEntry);
}
我用
获得了exeption未处理的类型' System.InvalidOperationException'发生在System.Windows.Forms.dll
中其他信息:无法删除未提交的新行。
答案 0 :(得分:1)
solve,int lastEntry = glProstor.Rows.Count - 2