gpt4 book ai didi

delphi - 在运行时创建 Tframe :

转载 作者:行者123 更新时间:2023-12-03 15:07:59 27 4
gpt4 key购买 nike

是否可以创建运行时框架并添加现有面板,例如将面板的父级设置为框架?添加后,复制框架并使用它?

喜欢:

f:= Tframe. create(..)
...

panel3.parent = f; //where panel3 has many controls.

然后复制 f?有可能吗?如何?或任何其他建议?

最佳答案

我认为你不会通过重复来解决这个问题。您需要的是这样的函数:

function CreateFrameAndHostPanel(Owner: TComponent; Parent: TWinControl; Panel: TPanel): TFrame;
begin
Result := TFrame.Create(Owner);
Try
Result.Parent := Parent;
Panel.Parent := Result;
Except
FreeAndNil(Result);
raise;
End;
end;

关于delphi - 在运行时创建 Tframe :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4398925/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com