获取总行数:dataGridView1.Rows.Count;
获取当前选中行索引:int i = this.dataGridView1.CurrentRow.Index;
获取当前选中列索引:int j = this.dataGridView1.CurrentCell.ColumnIndex;
DataGridView的几个基本操作:
1、获得某个(指定的)单元格的值:
dataGridView1.Row[i].Cells[j].Value;
2、获得当前选中行的索引:
dataGridView1.CurrentRow.Index;
3、获得当前选中单元格的值:
dataGridView1.CurrentCell.Value;
扩展资料
通过DataGridView控件,可以显示和编辑表格式的数据,而这些数据可以取自多种不同类型的数据源。
DataGridView控件具有很高的的可配置性和可扩展性,提供了大量的属性、方法和事件,可以用来对该控件的外观和行为进行自定义。当你需要在WinForm应用程序中显示表格式数据时,可以优先考虑DataGridView(相比于DataGrid等其它控件)。
如果要在小型网格中显示只读数据,或者允许用户编辑数以百万计的记录,DataGridView将提供一个易于编程和良好性能的解决方案。
DataGridView 用来替换先前版本中的DataGrid,拥有较DataGrid更多的功能;但DataGrid仍然得到保留,以备向后兼容和将来使用。如果要在两者中选择,可以参考下面给出的DataGrid 和DataGridView之间区别的细节信息。
参考资料来源:
百度百科——DataGridView
//这是用鼠标从左上到右下方式选取的情况
int cellsCount = dataGridView1.SelectedCells.Count;
int c1 = (dataGridView1.SelectedCells[cellsCount-1].ColumnIndex);
int r1 = (dataGridView1.SelectedCells[cellsCount-1].RowIndex);
int c2 = (dataGridView1.SelectedCells[0].ColumnIndex);
int r2 = (dataGridView1.SelectedCells[0].RowIndex);
Console.WriteLine("选择了:第 {0} 列第 {1} 行 -- 第 {2} 列第 {3} 行",c1,r1,c2,r2);
你是想获取总行数?还是选中行和列的索引?
获取总行数:dataGridView1.Rows.Count;
获取当前选中行索引:int i = this.dataGridView1.CurrentRow.Index;
获取当前选中列索引:int j = this.dataGridView1.CurrentCell.ColumnIndex;
行数:int i = this.dataGridView1.CurrentRow.Index;
列数:int j = this.dataGridView1.CurrentCell.ColumnIndex;
这个是没错的 但是需要你确定当前你已经选行/列了
写代码的话 判断下this.dataGridView1.CurrentRow和this.dataGridView1.CurrentCell是否是null 如果是null提示 让他去选择行/列
行数:int i = this.dataGridView1.CurrentRow.Index;
列数:int j = this.dataGridView1.CurrentCell.ColumnIndex;