for i:=1 to 5 do
  //for width1:= 20 to 500 do
  //for height1:= 20 to 500 do
  begin
  newpanel := Tpanel.Create(panel1);
   with newpanel do
    begin
     Parent:=Panel2;
     Left:=left1;
     Top:=top1;
     Width:=20;
     Height:=20;
     Color:=clblue;
  end;循环生成的控件 该怎么使用呢?