LinkBar with solid border style : LinkBar « Components « Flex






LinkBar with solid border style

LinkBar with solid border style
        

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
  <mx:VBox>

    <mx:LinkBar dataProvider="{vs1}" borderStyle="solid" />

    <mx:ViewStack id="vs1" borderStyle="solid" width="100%" height="150"> 

      <mx:Canvas id="accountInfo" label="Account" toolTip="Account Info Screen">
        <mx:Label text="Account" />
      </mx:Canvas>
      
      <mx:Canvas id="search" label="Search" toolTip="Search Screen">
        <mx:Label text="Search" />
      </mx:Canvas>

      <mx:Canvas id="custInfo" label="Customer" toolTip="Customer Info Screen">
        <mx:Label text="Customer" />
      </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 controlLinkBar control
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