如何在TCustomControls中添加TAboutBox?
我想在我的自定义组件上添加 aboutbox/dialogbox。如何使小按钮[...]出现在对象检查器上?就像在 Timage 组件上分配图片一样。
I want to add aboutbox/dialogbox on my Custom component. how to make the small button[...] appear on the object inspector? just like the assigning a picure on the Timage component.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须定义与此类似的属性:
TFAbout 是一个类,定义当用户单击“对象检查器”中的属性时您想要看到的表单(关于表单)。
此外,如果您想看到带有三点 |...| 的按钮,则必须注册“属性编辑器”。在 OI 中。
这是一个示例单元:
只需“注册”此“属性编辑器”即可使用您的“关于”属性;这对于将您的资源与您的编辑器“链接”起来非常重要。
在您有注册组件的代码的地方,添加注册属性的代码:
问候
You must define a property similar to this:
TFAbout is a class, that define the form that you want to see (About form), when the user click on the property in "Object Inspector".
Additionally, you must register a "Property Editor", if you want see a buuton with the three point |...| in OI.
This is a sample unit:
Only rest to "register" this "property Editor" for work with your About property; This is important for "link" your property with your editor.
Where you have the code for register the component, add the code for register the property:
Regards