标签: c# datagridview datarow
如何更改DataGridView中行的起始索引?例如。它应该从8开始,而不是从0开始。
DataGridView
答案 0 :(得分:0)
简单地说,我认为你不能改变行的起始索引,但有一个简单的解决方案
每当你想要使用RowIndex时,只需添加例如: 8
DataGridView1.Rows[(myIndex + 8)].DoSomething();