実行時にネストされたコンポーネントを作成しています。Parent
内の子コンポーネントのプロパティを割り当てるにはどうすればよいwith
ですか?
with Tspanel.Create(categorypanel) do
begin
parent:=categorypanel; // categorypanel, is a declared variable
height:=30;
visible:=true;
button1 := tsbutton.Create();
// Here is my problem! I want the parent to be the
// panel I've created with the "with tspanel.create(...)"
button1.Parent := ...
end;
私の目標は、すべてのコンポーネントに対して変数を宣言しないことです。