LinkBar control : LinkBar « Components « Flex






LinkBar control

LinkBar control
        
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:VBox>
        <mx:LinkBar dataProvider="{myViewStack}" borderStyle="solid" />
        <mx:ViewStack id="myViewStack" borderStyle="solid" width="100%">
            <mx:Canvas id="search" label="Search">
                <mx:Label text="Search" />
            </mx:Canvas>
            <mx:Canvas id="custInfo" label="Customer Info">
                <mx:Label text="Customer" />
            </mx:Canvas>
            <mx:Canvas id="accountInfo" label="Account Info">
                <mx:Label text="Account" />
            </mx:Canvas>
        </mx:ViewStack>
    </mx:VBox>
</mx:Application>

   
    
    
    
    
    
    
    
  








Related examples in the same category

1.LinkBar EffectsLinkBar Effects
2.Use LinkBar to create a set of linksUse LinkBar to create a set of links
3.LinkBar with solid border styleLinkBar with solid border style
4.LinkBar With Array DataLinkBar With Array Data
5.LinkBar with border styleLinkBar with border style
6.LinkBar item click eventLinkBar item click event
7.Bind data to the tag to populate the LinkBar controlBind data to the <mx:dataProvider> tag to populate the LinkBar control