获取GridControl选中的当前行的某一列的值
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(列名)//列名是你想要获取的列