如何在delphi中的panel组件中调用frame或者是form窗口呢?(100分)

  • 主题发起人 zww80216
  • 开始时间
Z

zww80216

Unregistered / Unconfirmed
GUEST, unregistred user!
我想用treeview组件中的事件激活在后台的一个form或frame在主窗体上,请问delphi可以实现吗?
 
怎么, 没有人呀?
 
大家到底会不会呀?
 
function ShowFrame(const AOwner: TWinControl;const AFrame: TFrame;)
begin
AFrame := TFrame.Create(AOwner);
AFrame.Parent := AOwner;
AFrame.Show;
end;
 
可是我的frame是早已经建好的,也可以吗?
 
Does can change Parent and ReCreate the Control?
 
what are you speak?ido
n't understand english!can you speake in chinese?
 
I think your English is terrible!
What's the meaning of "frame是早已经建好"?
 
frame是别人建好的,可是我在同一个界面下要根据不同的条件把他们显示在主form上,这道题有解吗
 

Similar threads

D
回复
0
查看
792
DelphiTeacher的专栏
D
D
回复
0
查看
820
DelphiTeacher的专栏
D
D
回复
0
查看
869
DelphiTeacher的专栏
D
D
回复
0
查看
707
DelphiTeacher的专栏
D
顶部