FLEX,瓷砖容器:如何更好地组织孩子们

发布于 2024-09-01 16:21:26 字数 170 浏览 3 评论 0原文

我用作 LinkBut​​ton 的容器。

我想知道

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 技术交流群。

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

发布评论

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

评论(1

独孤求败 2024-09-08 16:21:26

1)项目之间的空间由horizo​​ntalGap和verticalGap设置,因此要完全删除它们,

horizontalGap="0" verticalGap="0"  

请记住,您需要所有对象的大小相同才能正常工作。

2)你到底是什么意思?
如果您只需要更改对象的宽度,那么执行 btnId1.width = 200; 有什么问题吗?

3) 要取消滚动条,请使用

horizontalScrollPolicy="off" verticalScrollPolicy="off"

1) Space between items is set by horizontalGap and verticalGap, so to remove them completely use

horizontalGap="0" verticalGap="0"  

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

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