//取单元格数据三种方法 this.dataGridView1[e.ColumnIndex, e.RowIndex].Value.ToString();//第一种取法 this.dataGridView1.Rows[e.RowIndex].Cells["你所要取值的列名称"].Value.ToString();//第二种取法 this.dataGridView1.CurrentRow.Cells["你所要取值的列名称"].Value.ToString();//第三种取法 注意读取时单元格数据为null标签:gridview,c#,Value,取法,ToString,dataGridView1,winform From: https://www.cnblogs.com/linnew/p/17809457.html