DataGridView如何获取某个数据
3 月,跳不动了?>>> DataGridView的几个基本操作: 1.获取某个(指定的)单元格的值: dataGridView1.Row[i].Cells[j].Value; 2.获取选中的总行数: dataGridView1.SelectedRows.Count; 3.获取当前选中行的索引: dataGridView1.CurrentRow.Index; 4.获取当前选中单元格的值: dataGridView1.CurrentCell.Value; 5.获取选中行的数据 string [] str = new string [dataGridView.Rows.Count]; for ( int i;i<dataGridView1.Rows.Count;i++ ) { if (dataGridView1.Rows[i].Selected == true ) { str[i] = dataGridView1.Rows[i].Cells[ 1 ].Value.ToString(); } } 6.获取选中行的某个数据 int a = dataGridView1.SelectedRows.Index; dataGridView1.Rows[a].Cells[index].Value; 7.获取某个(指定的)单元格的值: dataGridView1.Rows[i].Cells[j]