当新行添加到datasource
datagridview
更新时,但是自动查看的行,即不需要滚动到的行是“旧”行。先前选定的行位于可查看行的底部。我希望显示最新的行,即滚动条始终位于顶部。
我尝试取消选择datagridview
中的所有行:
dataGridView1.ClearSelection();
dataGridView1.CurrentCell = null;
虽然没有选择行,但datagridview
顶部的行不会自动显示。 datagridview
仍会跳转以显示之前选定的行。
答案 0 :(得分:1)
dataGridView1.ClearSelection();
dataGridView1.CurrentCell = null;
dataGridView1.FirstDisplayedScrollingRowIndex = 0;