标签: delphi custom-component
我正在构建一系列可视复合组件,它们使用类似/常用的“连接”方法,这些方法会激活内部表格等。
我正在自动化一些连接内容以在运行时自动连接。如何在组件级别判断当前状态是运行时还是设计时?
答案 0 :(得分:16)
我想您要检查组件的csDesigning属性中是否存在ComponentState标志:
csDesigning
ComponentState
if csDesigning in ComponentState then // designtime else // not designtime