如何使组件在表单设计器中消失?

发布于 2024-08-06 21:46:29 字数 262 浏览 5 评论 0原文

我正在创建一个包含其他控件的自定义控件,其中包括两个滚动条,一个水平滚动条,一个垂直滚动条。有一个属性可以将一个或两个滚动条设置为不可见,该属性在运行时工作正常,但在设计时,当我设置该属性时,它不会从表单设计器中消失。

现在,我可以理解,如果这是一个单独的控件,但它是聚合组件的一部分,因此它应该遵守父控件的规则,而不是表单设计者的规则,这如何成为一个有用的功能。有什么方法可以确保当我设置 .Visible := false; 时控件会消失,即使它位于表单设计器中?

I'm creating a custom control that contains other controls, including two scroll bars, one horizontal, one vertical. There's a property to set one or both scroll bars invisible, which works fine at runtime, but at design-time it doesn't disappear from the form designer when I set the property.

Now, I can understand how this could be a useful feature if this was an individual control, but it's part of an aggregate component and so it ought to obey the parent control's rules, not the form designer's. Is there any way to make sure the control will disappear when I set .Visible := false; even when it's in the form designer?

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

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

发布评论

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

评论(1

隐诗 2024-08-13 21:46:29

您可以设置控件的“csNoDesignVisible”ControlStyle 标志。如果设置了该标志,Visible 属性将像运行时一样工作。

You can set the "csNoDesignVisible" ControlStyle flag of the control. If that flag is set the Visible property will work as it does at runtime.

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