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.
C# のコードで gridview をスクロールしたい。行を追加すると、グリッドビューは最後の行を表示します。私はこれを使用しました:
dataGridView1.CurrentCell = dataGridView1.Rows[dataGridView1.RowCount - 1].Cells[1];
しかし、正しく動作しません。
AutoSizeRowsMode プロパティが DisplayedCells に設定されていない限り、このソリューションを試すことができます。
dataGridView1.FirstDisplayedScrollingRowIndex = dataGridView1.Rows.count-1;