Declare a variable of type TPanel
and store a reference to your component in that variable.
var
Panel: TPanel;
....
Panel := TPanel.Create(Self);
You can then refer to the control using this variable.
You will likely need to hold the variable as a member field of the form, or in an array, or indeed some other container.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…