gpt4 book ai didi

delphi - 如何指定从 Delphi TStream 读取的组件的所有者?

转载 作者:行者123 更新时间:2023-12-02 14:15:46 25 4
gpt4 key购买 nike

我正在从流中读取组件,并且希望能够指定 Owner 属性。

  var TComponent : comp;

stream.Seek(0, soFromBeginning);
comp := stream.ReadComponent(nil);

谁拥有 comp,我该如何更改它?我希望 readComponent 的参数是所有者,但它似乎做了完全不同的事情!

最佳答案

@Roddy,您可以使用InsertComponent设置组件所有者的过程。

检查此示例

procedure TForm1.Button1Click(Sender: TObject);
var
Stream : TFileStream;
Comp : TComponent;
begin
Stream := TFileStream.Create('Myfiile', fmOpenRead);
try
Comp := Stream.ReadComponent(nil);
if Comp <> nil then
InsertComponent(Comp); //this make the form the owner of the component
finally
Stream.Free;
end;
end;

关于delphi - 如何指定从 Delphi TStream 读取的组件的所有者?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2689982/

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