Delphi控件cxGrid 如何动态创建列?
发布时间:2020-12-15 09:53:18 所属栏目:大数据 来源:网络整理
导读:方法一: var i: Integer; Column: TcxGridDBColumn; cxView: TcxGridDBTableView; begin cxView : = Self.Levels[ 0 ].GridView as TcxGridDBTableView; if cxView.DataController.DataSource nil then if cxView.DataController.DataSource.DataSet nil th
方法一: var i: Integer; Column: TcxGridDBColumn; cxView: TcxGridDBTableView; begin cxView := Self.Levels[0].GridView as TcxGridDBTableView; if cxView.DataController.DataSource <> nil then if cxView.DataController.DataSource.DataSet <> nil then begin cxView.ClearItems; for i:=0 to cxView.DataController.DataSource.DataSet.FieldCount-1 do begin Column := cxView.CreateColumn; Column.DataBinding.FieldName := cxView.DataController.DataSource.DataSet.Fields[i].FieldName; Column.PropertiesClass := TcxTextEditProperties; end; end; end; 方法二、 for i := 0 to Query.FieldCount - 1 do begin cxGrid.CreateColumn; cxGrid.columns[i].DataBinding.FieldName := Query.Fields[i].DisplayName; cxGrid.Columns[i].Caption := ‘XXXX‘; cxGrid.Columns[i].Width :=80; end; 方法三、 procedure TFrmRuleEdit.CreateCols; var Column: TcxGridDBColumn; begin cdsPowerPrj.First; while not cdsPowerPrj.Eof do begin Column := viewPower.CreateColumn; Column.Caption := cdsPowerPrj.FieldByName(‘description‘).Text; Column.DataBinding.FieldName := cdsPowerPrj.FieldByName(‘powerName‘).Text; Column.PropertiesClassName := ‘TcxCheckBoxProperties‘; Column.Width := 50; cdsPowerPrj.Next; end; end; (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |