在我的ButtonBar皮肤中,我使用TileLayout:
<s:DataGroup id="dataGroup" width="100%" height="100%"> <s:layout> <s:TileLayout /> </s:layout> </s:DataGroup>
但此布局将最大宽度设置为所有ButtonBarButtons。但我不想要相同的宽度,我想要的是HorizontalLayout中的行为。如何解决这个问题?
发布于 2011-07-21 22:43:00
也许this FlowLayout或this layout可以解决你的问题?
发布于 2011-07-21 23:10:42
你能解释一下为什么HoizontalLayout不适合你吗?
<s:ButtonBar>
<s:layout>
<s:HorizontalLayout/>
</s:layout>
</s:ButtonBar> https://stackoverflow.com/questions/6777857
复制相似问题