Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はいくつかの問題を抱えていますDataGridView。
DataGridView
1000 以上の行があり、編集された行にスクロールして戻るのは苦痛です。データを更新した後、スクロール位置を保持し、編集された行にスクロールするにはどうすればよいですか?
行インデックスを保存し、更新を行ってから、FirstDisplayedScrollingRowIndexプロパティを設定します。
FirstDisplayedScrollingRowIndex
int index = dataGridView1.CurrentRow.Index; /* * Your Refresh Code */ dataGridView1.FirstDisplayedScrollingRowIndex = index;