动态建立控件 ( 积分: 100 )

  • 主题发起人 主题发起人 anson
  • 开始时间 开始时间
A

anson

Unregistered / Unconfirmed
GUEST, unregistred user!
我想根据一个文件动态生成控件,包括控件位置,大小,颜色,类型等资料,谁能帮我设计此文件格式
控可能包括
combobox
edit
dbgrid
label等
 
我想根据一个文件动态生成控件,包括控件位置,大小,颜色,类型等资料,谁能帮我设计此文件格式
控可能包括
combobox
edit
dbgrid
label等
 
文件使用INI文件
比如
var
tmpCB: TCombobox;
tmpFile: TINIFile;
begin
tmpCB := TCombobox.Create(Application);
try
tmpCB.Parent := Self;//Self是窗体
tmpCB.Height := tmpFile.ReadInteger('Position', 'Height', 0);
.........
end;
 
后退
顶部