如何在datagrid devexpress winform中获取复选框选中的行
How to get checkbox selected raw in data grid dev express winform
我从 db.i 中获取所有数据 在网格中添加复选框列 manually.if 我 select 复选框。我想要从数据网格视图中检查原始数据的值。
Refer below example:
int[] rowHandles = this.gridView.GetSelectedRows();
if (rowHandles == null || rowHandles.Length == 0)
return;
foreach (int rowHandle in rowHandles)
{
DataRow row =
this.gridView.GetDataRow(rowHandle);
if (row != null)
{
var name = row["NAME"].ToString();
}
}
我从 db.i 中获取所有数据 在网格中添加复选框列 manually.if 我 select 复选框。我想要从数据网格视图中检查原始数据的值。
Refer below example:
int[] rowHandles = this.gridView.GetSelectedRows();
if (rowHandles == null || rowHandles.Length == 0)
return;
foreach (int rowHandle in rowHandles)
{
DataRow row =
this.gridView.GetDataRow(rowHandle);
if (row != null)
{
var name = row["NAME"].ToString();
}
}