alRactPanel1 : Array of MovePanel;
for i := 0 to 10 do
Begin
alRactpanel1[i] := TMovepanel.Create[Panel11];
alRactpanel1[i].caption := IntToStr(i);
alRactPanel2[i] := TMovepanel.Create[Panel12];
alRactpanel2[i].Caption := IntToStr(i);
End;
동적으로 판넬을 최대 20개까지 만듭니다.
그중에서 하나를 움직이면 어떤 판넬이 움직였는지 알고 싶은데요.