Flex 4:是否可以让 BorderContainer 自动调整其内容的大小?
我有一个 BorderContainer,里面有几个对象。我希望它能够紧贴其内容,但事实并非如此。 BorderContainer 的默认大小似乎是 112x112。考虑到没有其他容器具有该默认大小,这太奇怪了。有没有办法将宽度和高度属性设置为“自动”或类似的东西?
I have a BorderContainer with several objects inside of it. I want it to fit snugly around its own contents, but it doesn't. It seems the default size of a BorderContainer is 112x112. That is so wierd considering no other containers have that default size. Is there a way to set the width and heigh properties to "auto" or something like that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
BorderContainerSkin 将最小尺寸定义为 112 像素。
解决方法:将 BorderContainer 的属性 minWidth 和 minHeight 设置为 0。
It is BorderContainerSkin that defines the minimal size to 112 pixels.
Workaround : set the properties minWidth and minHeight of your BorderContainer to 0.