"); //-->
Delphi也可以实现控件数组,用定义数组变量实现控件数组
下面是代码:
procedure Tfrm_main.FormCreate(Sender: TObject);
var
image:array[1..12] of TImage; //用于存放12个image图像框
label:array[1..12] of TLabel;//用于存放12个label标签
begin
//将image对象付给image数组
image[1]:=image1;
image[2]:=image2;
image[3]:=image3;
image[4]:=image4;
image[5]:=image5;
image[6]:=image6;
image[7]:=image7;
image[8]:=image8;
image[9]:=image9;
image[10]:=image10;
image[11]:=image11;
image[12]:=image12;
//将label对象付给label数组
label[1]:=label1;
label[2]:=label2;
label[3]:=label3;
label[4]:=label4;
label[5]:=label5;
label[6]:=label6;
label[7]:=label7;
label[8]:=label8;
label[9]:=label9;
label[10]:=label10;
label[11]:=label11;
label[12]:=label12;
end;
*博客内容为网友个人发布,仅代表博主个人观点,如有侵权请联系工作人员删除。