本人原先的做法是增加一个定时器,隔很短的时间检查一次行能否增加。
private void timer1_Tick(object sender, EventArgs e)
{
int index = dataGridView1.RowCount;
dataGridView1.Rows[index – 1].Cells[0].Value = Convert.ToString(index);
private void timer1_Tick(object sender, EventArgs e)
{
int index = dataGridView1.RowCount;
dataGridView1.Rows[index – 1].Cells[0].Value = Convert.ToString(index);
}
还有什么更好的办法吗?
解决方案
40
绑定的时候判断那不行吗?