FLEX,瓷砖容器:如何更好地组织孩子们
我用作 LinkButton 的容器。
我想知道
1)如何删除 Tile 容器中的项目之间的空间。
2)如何为我的项目设置动态宽度(目前,无论所包含组件的宽度如何,它们都具有相同的宽度)
3)如果容器中未包含项目,如何避免显示滚动条
谢谢
I'm using as container for my LinkButtons.
I would like to know
1) how can I remove the space between the items in my Tile container.
2) how can I set dynamic width for my items (at the moment they all have the same width regardless the width of the included component)
3) how can I avoid to display scrollbars if the items are not included in the container
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1)项目之间的空间由horizontalGap和verticalGap设置,因此要完全删除它们,
请记住,您需要所有对象的大小相同才能正常工作。
2)你到底是什么意思?
如果您只需要更改对象的宽度,那么执行 btnId1.width = 200; 有什么问题吗?
3) 要取消滚动条,请使用
1) Space between items is set by horizontalGap and verticalGap, so to remove them completely use
Keep in mind that you need the size of all objects to be the same for it to work properly.
2) What do you mean exactly?
If you only need to change the width of the objects, what's wrong with doing btnId1.width = 200;?
3) To cancel the scroll bars use