在点击“编辑”按钮之前,我需要知道我选择哪一行并获取单元格值(例如:idproduct)。
答案 0 :(得分:3)
正如@brendon所指,如果gridView是View
上的当前GridControl
:
// Get your currently selected grid row
var rowHandle = gridView.FocusedRowHandle;
// Get the value for the given column - convert to the type you're expecting
var obj = gridView.GetRowCellValue(rowHandle, "FieldName");
答案 1 :(得分:0)
您可以使用GridView的GetRowCellValue方法来检索焦点行值。
另请参阅:http://documentation.devexpress.com/windowsforms/CustomDocument753.aspx
答案 2 :(得分:0)
public int idproductx;
public void tProductGridView_RowClick(object sender, RowClickEventArgs e)
{
if (e.Clicks > 0)
{
idproductx = (int)((GridView)sender).GetRowCellValue(e.RowHandle, "idproduct ");
}
}