TDataModule继承
当我尝试继承 TDataModule Delphi 时,将后代类视为表单,为它们提供字体和客户端属性等属性。 (运行时出现“属性不存在”异常)
TixDataModule = class(TDataModule);
TDM = class(TixDataModule)
end;
我该怎么做才能使其正常工作?
When I'm trying to inherit TDataModule Delphi treat descendant class like a form giving them properties like font and Client properties. ("property does not exists" exception on a run-time)
TixDataModule = class(TDataModule);
TDM = class(TixDataModule)
end;
What Can I do to make it work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保所有继承的组件在 dfm 中都标记为
inherited
而不是object
。使用 Alt+F12 切换“dfm 作为文本”和“dfm 作为视觉”。
Make sure that all the inherited components is marked with
inherited
rather thanobject
in the in the dfm.Toggle "dfm as text" and "dfm as visual" with Alt+F12.