4

我有一些问题,现在不知道如何在DataGridView.

我有超过 1000 行,滚动回编辑的行很痛苦。刷新数据后如何保留滚动位置并滚动到已编辑的行?

4

3 回答 3

8

保存行索引,刷新,然后设置FirstDisplayedScrollingRowIndex属性。

int index = dataGridView1.CurrentRow.Index;

/*
 * Your Refresh Code
 */

dataGridView1.FirstDisplayedScrollingRowIndex = index;
于 2016-01-13T21:47:31.600 回答
5

您可以在重新加载数据之前获取当前行索引:

int currentIndex= dataGridView1.CurrentRow.Index;

然后在重新加载数据后,您可以使用以下任一选项:

滚动并设置当前行:

this.dataGridView1.CurrentCell =  this.DataGridView1.Rows[currentIndex].Cells[0];

滚动:

dataGridView1.FirstDisplayedScrollingRowIndex = currentIndex;
于 2016-01-13T23:23:08.440 回答
0
void SomeMethod()
{
    if (dataGridView != null &&
        dataGridView.CurrentRow != null)
            this.Invoke(new Action(GetScrollingIndex));
    UpdateTable();
    if (dataGridView != null &&
        dataGridView.CurrentRow != null)
            this.Invoke(new Action(SetScrollingIndex));
}
void GetScrollingIndex()
{
    scrollingIndex = dataGridView.FirstDisplayedCell.RowIndex;
}
    
void SetScrollingIndex()
{
    dataGridView.FirstDisplayedScrollingRowIndex = scrollingIndex;
}
于 2021-02-04T09:44:31.877 回答