用控件数组来做,通过TAG来判断对应的控件,
一般是在FORMCREATE里生成控件,在FORMCLOSE里FREE掉
Header:array [1..MAXint]of TSpeedButton;
for i:=1 to MAXint do
//建立Header
begin
Header:=TSpeedButton.Create(self);
with Headerdo
begin
Parent:=ListBox1;
Align:=alNone;
Left:=0;
if i<>1 then
Top:=ListBox1.Height-4-(MAXint-1)*21+(i-2)*21
else
Top:=0;
Width:=ListBox1.Width-4;
Tag:=i;
Height:=21;
Cursor:=crHandPoint;
Caption:='第'+inttostr(i)+'个头按钮';
Header.BringToFront;
Transparent:=false;
//关联事件
OnMouseUp:=Form1.up;
onClick:=Form1.Click;
end;
end;
以后可以通过控件数组的下标来引用控件