Search Flex Components Free

Custom Search

December 25, 2007

Flex Containers and Layout Management VDividedBox Source Code

Flex Containers and Layout Management Sample Source Code:


Create a new file:
VDividedBox.mxml


<?xml version="1.0" encoding="utf-8"?>

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">

<mx:HDividedBox width="100%" height="100%">

<mx:Panel title="Panel 1" width="100%" height="100%"/>

<mx:VDividedBox width="100%" height="100%">
<mx:Panel title="Panel 2" width="100%" height="100%"/>
<mx:Panel title="Panel 3" width="100%" height="100%"/>
</mx:VDividedBox>

</mx:HDividedBox>

</mx:Application>

Related Flex Tutorials