某行某列的值: 获得行索引 int i = this.datagrid.CurrentRowIndex; 用索引获得某列值 string str = this.datagrid[i,3].ToString(); 或直接用 Gridview.Rows[行].cell[列].Text