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ですか?例えば。0からではなく8から開始する必要があります。
DataGridView
単純に、行の開始インデックスを変更できるとは思いませんが、簡単な解決策があります
RowIndexを使用してsthを実行するたびに、たとえば8を追加します。
DataGridView1.Rows[(myIndex + 8)].DoSomething();