Dtagridview 光标定位最后行的方法 - 转自:jin_yao_chi的博客
Posted 安静的猪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dtagridview 光标定位最后行的方法 - 转自:jin_yao_chi的博客相关的知识,希望对你有一定的参考价值。
定位行:
1.BindingSource.MoveLast();
2.dataGridView1.FirstDisplayedScrollingRowIndex = dataGridView1.Rows. Count-1;
定位单元格:
1.dataGridView1.FirstDisplayedCell = dataGridView1.Rows[xxx].Cells[0];
2.dataGridView1.CurrentCell = dataGridView1.Rows[dataGridView1.Rows.Count-1].Cells[0];
dataGridView1.BeginEdit(true);
以上是关于Dtagridview 光标定位最后行的方法 - 转自:jin_yao_chi的博客的主要内容,如果未能解决你的问题,请参考以下文章