0

我需要以编程方式完成,我对此一无所知。所以我需要使用循环来搜索所有列?例如:

  GridViewCommandColumn a= new GridViewCommandColumn();
  a.showselectcheckbox=true;
  aspxgridview1.columns.find(a);
4

1 回答 1

2

您可以通过ASPxGridView.Columns集合以下列方式检索所需的列:

按字段名称/标题/名称:

GridViewCommandColumn commandColumn = (GridViewCommandColumn)ASPxGridViewInstance.Columns["#"];

通过可见索引:

GridViewCommandColumn commandColumn = (GridViewCommandColumn)ASPxGridViewInstance.Columns[0];
于 2012-05-10T06:41:48.673 回答