Mega Code Archive

 
Categories / Flex / Components
 

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>