Search Flex Components Free

Custom Search

December 25, 2007

Flex Containers and Layout Management VBox Source Code

Flex Containers and Layout Management Sample Source Code:

Creat a new file:
VboxDemo.mxml


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

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

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

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

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

</mx:HBox>

</mx:Application>

Related Flex Tutorials