1

我有以下代码:

        <s:ButtonBar id="tabs" y="15" left="0" height="31"
                 change="VideosMenuBar_changeHandler(event)" requireSelection="true">  
        <s:layout>
            <s:HorizontalLayout gap="1" columnWidth="180" variableColumnWidth="false"   
                                />
        </s:layout>

        <s:ArrayCollection>
            <fx:String>Latest Videos</fx:String>
            <fx:String>Last Week Videos</fx:String>
            <fx:String>Last Month Videos</fx:String>
        </s:ArrayCollection>

    </s:ButtonBar>

如何更改此按钮栏中按钮的高度?没有额外的皮肤课程有可能吗?

4

1 回答 1

3

我用上面给出的 Maxim Kachurovskiy 的答案解决了这个问题

<s:HorizontalLayout verticalAlign="justify" .../>
于 2012-02-09T11:12:23.167 回答