如何创建一个行为类似于 Tpanel 的 TCustomControl?
如何创建一个行为类似于 Tpanel 的 TCustomControl?例如 MyCustomComponent,我可以将组件放入标签、图像等中。
how do I create a TCustomControl that will behave like Tpanel? eg MyCustomComponent, that I can drop components in like labels, images etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
诀窍在于 TCustomPanel 中的这段代码:
您还可以派生出更多在其
ControlStyle
属性中具有csAcceptsControls
的 VCL 控件。如果您想在自己的控件中执行此操作,但不从此类 VCL 控件派生,那么您应该执行以下操作:
csAcceptsControls
添加到ControlStyle属性
就像这个示例代码:
--jeroen
The trick is this piece of code in TCustomPanel:
There are many more VCL controls you can descend from that have
csAcceptsControls
in theirControlStyle
property.If you want to do this in your own controls, but do not descend from such a VCL control, then you should do something like this:
csAcceptsControls
to theControlStyle
propertyLike this sample code:
--jeroen