Creating a ControlBar container : ControlBar « 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 » ControlBarScreenshots 
Creating a ControlBar container
Creating a ControlBar container
         
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">

    <mx:Panel title="My Application" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10">
        <mx:HBox width="250" height="200"></mx:HBox>
        <mx:ControlBar width="250">
            <mx:Label text="Quantity" />
            <mx:NumericStepper />
            <mx:Spacer width="100%" />
            <mx:Button label="Add to Cart" />
        </mx:ControlBar>
    </mx:Panel>
</mx:Application>

   
    
    
    
    
    
    
    
    
  
Related examples in the same category
1.Add controls to ControlBar
2.Controlbar with vertical ruleControlbar with vertical rule
3.A ControlBar with a Spacer
w__w_w.__ja___v_a___2__s.c__o__m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.