Use VDividedBox to hold List : DividedBox « Container « Flex






Use VDividedBox to hold List

Use VDividedBox to hold List
       
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Panel layout="horizontal" width="100%" height="100%" title="this is a test">
        <mx:VDividedBox direction="vertical" width="200" height="100%">
            <mx:List width="100%" height="200">
            </mx:List>
            <mx:List width="100%">
            </mx:List>
        </mx:VDividedBox>
        <mx:Canvas width="100%" height="100%">
            <mx:Button bottom="10" right="10" label="Save"/>
        </mx:Canvas>
    </mx:Panel>
</mx:Application>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Making a dashboard with DividedBoxMaking a dashboard with DividedBox
2.Creating a DividedBox, HDividedBox, and VDividedBox containerCreating a DividedBox, HDividedBox, and VDividedBox container
3.Use VDividedBoxUse VDividedBox
4.Use DividedBoxUse DividedBox
5.Use HDividedBoxUse HDividedBox