我在 BorderContainer 中放了一个 TileGroup 并将宽度设置为 100%,但是 TileGroup 中的内容没有填满父容器,它在右侧留下了一大块空白。
代码是:
<s:BorderContainer width="100%" height="100%">
<s:TileGroup width="100%" requestedColumnCount="2">
<s:Button>
button1
</s:Button>
<s:Button>
button2
</s:Button>
<s:Button>
button3
</s:Button>
</s:TileGroup>
</s:BorderContainer>
结果是这样的:
http://i.minus.com/iN39P7Us4cBm1.png
宽度已设置为 100%,但它不起作用。
有没有办法让 TileGroup 像 Java swing 中的 GridLayout 一样填充容器?
http://www.java2s.com/Code/JavaImages/GridLayoutPane.PNG
非常感谢。