开发者

Space between two Links in LinkBar

开发者 https://www.devze.com 2023-01-23 17:40 出处:网络
I had display in link as follows. Three Links on left hand side ,two links on right hand Side and in between Some space has to be there. Please suggest how to do this.

I had display in link as follows. Three Links on left hand side ,two links on right hand Side and in between Some space has to be there. Please suggest how to do this.

I have an idea's please suggest which is possible and th开发者_运维知识库e technical difficulties. For three Links i thought to put LinkBar and for the left hand side i thought two apply two LinkButton .Below the links I will place a canvas in that I will add viewstack for the LinkBar and VBox for the LinkButton when it is clicked.

Regards

Zulu


The trick is to put the LinkBars in a container with absolute positioning and set the left and right properties of the LinkBars to "0" like so:

<s:Group width="500">
    <mx:LinkBar left="0">
        <mx:dataProvider>
            <fx:String>Link 1</fx:String>
            <fx:String>Link 2</fx:String>
            <fx:String>Link 3</fx:String>
        </mx:dataProvider>  
    </mx:LinkBar>
    <mx:LinkBar right="0">
        <mx:dataProvider>
            <fx:String>Link 1</fx:String>
            <fx:String>Link 2</fx:String>
        </mx:dataProvider>  
    </mx:LinkBar>
</s:Group>
0

精彩评论

暂无评论...
验证码 换一张
取 消