获取datagridview单元格第row 行column列的值为:datagridview.Rows[row].Cells[column].Value
遍历数据行 然后可以通过 object x = this.dataGridView1.Rows[i].Cells[coloumnIndex].Value; 获取特定行的列的值
dataGridView1[e.ColumnIndex, e.RowIndex].Value.ToString();