dataGridView 选中单元格如何获取行号
dataGridView 控件 与 dataGrid 单击单元格取得该行行号 不一样吗?哪位高手能详细的说下吗?
最好写一段代码 单击 dataGridView1 控件单元格,获得行号,
谢谢诸位,下面是小弟对这两个控件的一点总结,不知是否正确
DataGrid:
int row = this.dataGrid1.CurrentCell.RowNumber; //单元格获取行号
DataGridView:
int row = this.dataGridView1.CurrentCell.RowIndex; //单元格获取行号
int row = this.dataGridView1.CurrentRow.Index;
还有一事请较诸位:
在 DataGrid 控件中:
int row = this.dataGrid1.CurrentCell.RowNumber;
this.dataGrid1.CurrentCell = new DataGridCell(row+1, 0);
在DataGridView中应该该怎样写,蓝色部分DataGridView控件是不能用的