TFlowPanel。 在运行时添加控件

发布于 2024-07-17 05:41:33 字数 63 浏览 12 评论 0原文

有谁知道如何在运行时向 TFlowPanel 添加控件(例如 TImage)?

问候, 彼得

Does anybody know how to add controls, say a TImage, to a TFlowPanel at runtime?

Regards, Pieter

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月下凄凉 2024-07-24 05:41:33

只是与普通容器略有不同,您可以设置子控件的顺序。

OldIndex:= FlowPanel.GetControlIndex( MyControl );     
FlowPanel.SetControlIndex( MyControl, OldIndex + 1 ); 

There is just a slight difference with a normal container, you can set the order of the child controls.

OldIndex:= FlowPanel.GetControlIndex( MyControl );     
FlowPanel.SetControlIndex( MyControl, OldIndex + 1 ); 
街角迷惘 2024-07-24 05:41:33

将任何控件添加到父控件:

MyControl := TMyControl.Create(MyForm); // Form is the owner
MyControl.Parent := ParentControl;      // Parent control is the parent

如果您愿意,您也可以设置其他属性。

To add any control to a parent control:

MyControl := TMyControl.Create(MyForm); // Form is the owner
MyControl.Parent := ParentControl;      // Parent control is the parent

You can set other properties too if you like.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文