有一種使用在運行時創建的組件的屬性不知道它的名字呢?我的意思是你已經完成了這個。如何在不知道名稱的情況下訪問組件的屬性?
with TPanel.Create(self) do
begin
Name := 'Panel' + IntToStr(ComponentCount + 1);
Height := 50;
Width := 100;
Top := 30;
Left := 30;
Parent := self;
end;
存放在容器中的對象,如'從TList' –
whosrdaddy