LinkBar control : LinkBar « Components « Flex

Home
Flex
1.Chart
2.Components
3.Container
4.Data Model
5.Development
6.Effects
7.Event
8.Graphics
9.Grid
10.Style
Flex » Components » LinkBarScreenshots 
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
ww___w__.j_av___a___2__s__.co___m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.