private string GetSelectID(string FileName)
{
int[] pRows = this.gridView1.GetSelectedRows();//传递实体类过去 获取选中的行
if (pRows.GetLength(0) > 0)
return gridView1.GetRowCellValue(pRows[0], FileName).ToString();
else
return null;
}
用的时候直接调用GetSelectID(列名)//列名是你想要获取的列