LinkBar with solid border style : 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 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
ww___w_.___j_a___v__a___2_s_.___c__om | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.