组件初始化 - 运行时与设计时

发布于 2024-07-15 17:52:16 字数 108 浏览 7 评论 0原文

我正在构建一系列视觉复合组件,它们使用类似/常见的“连接”方法,这些方法会启动内部表等。

我正在自动化一些连接内容以在运行时自动连接。 如何在组件级别判断当前状态是运行时还是设计时?

I have a series of visual compound components that I'm building, which use similar / common "connect" methods, which fire up there internal tables, etc.

I am automating some of the connection stuff to connect automatically at runtime. How do I tell, at the component level, if the current state is runtime or designtime?

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

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

发布评论

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

评论(1

眼眸 2024-07-22 17:52:16

我认为您想检查组件的 ComponentState 属性中是否存在 csDesigning 标志:

if csDesigning in ComponentState then
  // designtime
else
  // not designtime

I think you want to check if the csDesigning flag is present in the component's ComponentState property:

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