首页 > 代码库 > DataGridView的Cell[index] 对应列问题

DataGridView的Cell[index] 对应列问题

在DataGridView中设置的列顺序不是代表的Cell[] 的Index  。Cell对应的index是数据源中的列index。

比如:
select  唯一编号,履历编号,字段编号,状态,字段名称,SQL,顺序号 from 表
那么DataGridView 中Cell对应的列就是
Cell[0]:唯一编号
Cell[1]:履历编号
Cell[2]:字段编号
Cell[3]:状态
Cell[4]:字段名称
Cell[5]:SQL
Cell[6]:顺序号
 
DataGridView 编辑列功能中的上下移动功能并不能影响它的Cell属性的Iindex

DataGridView的Cell[index] 对应列问题