Delphi.Stretch Control(锚点:l、r、t 和对齐:alNone)如果一个控件不可见
有人这样做过吗?
如果我在表单上有 2 个组件,第 1 个组件是不可见的,第 2 个组件(具有锚点:左、右、上和对齐:alNone)必须填充不可见控件的空间。例如,如果您让 uTorrent 尝试隐藏类别列表,则列表视图将立即填充可用空间。
如何做到这一点?
谢谢!
Did anybody do this?
If I have 2 components on a form, 1-st is invisible, 2-d (which has anchors:left,right,top and align:alNone) must fill space of invisible control. For example, if you have uTorrent try to hide list of categories then listview will immediately fill free space.
How to do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将第二个控件的
Align
设置为alClient
,它就会做到这一点(填充可用空间)。在这种情况下,您不需要设置Anchors
。Just set
Align
of second control toalClient
and it will do just that (filling the available space). You do not need to set theAnchors
in this case.