码迷,mamicode.com
首页 > 其他好文 > 详细

cxgrid动态创建列

时间:2017-02-28 17:39:21      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:动态   first   name   bin   script   begin   checkbox   procedure   bind   

cxgrid动态创建列

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;

cxgrid动态创建列

标签:动态   first   name   bin   script   begin   checkbox   procedure   bind   

原文地址:http://www.cnblogs.com/hnxxcxg/p/6479540.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!