Flex:更改容器大小以包裹内容
我将 TitleWindow 与 PopupManager 一起使用。
我以编程方式将子项添加到我的 TitleWindow 中,并且我希望 TitleWindow 更改其大小以避免出现滚动条。
是否有任何属性可以让窗口将内容包装在 Flex 中?
谢谢
I'm using TitleWindow with PopupManager.
I programmatically add the children to my TitleWindow and I would like the TitleWindow changing its size in order to avoid scroll-bars.
Is there any property to mek the windows wrapping the content in Flex ?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我这样做的方法是给它一个 minHeight 和 minWidth,但没有 height 或 width 属性。这样它就会缩小以适应内容。
不过要小心。如果内容太多,它可能会超出屏幕,因此请设置 maxHeight 和 maxWidth。或者根据屏幕位置和尺寸调整标题窗口的大小。然后你仍然需要处理滚动条,但这种情况发生的频率要少得多。
The way I do this is to give it a minHeight and minWidth, but no height or width properties. That way it shrinks to fit the content.
Be careful, though. If you have too much content it can go off the screen, so set a maxHeight and maxWidth. Or else resize title window based on screen loc and dimensions. Then you still have to handle scrollbars, but it happens much less often.