Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 QML 列布局,但我只想禁用(或减少)两个元素之间的间距。在其余部分之间应单独留出间距。
可能吗?
谢谢。
减少是困难的,但增加两个相邻项目之间的空间很容易:只需Item在它们之间插入一个空白,并需要额外的垂直空间(当然减去一个额外的常规间距),如height. 不要忘记也设置一个非零值width,否则该项目将不会被考虑到布局计算中。
Item
height
width
在没有为Column自身设置间距的情况下,您可以通过这种方式实现每种可能的间距配置。这显然有点hacky,但没有其他办法。
Column