Using the TileLayout class to form a grid of items : TileLayout « Container « 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 » Container » TileLayoutScreenshots 
Using the TileLayout class to form a grid of items
 

<?xml version="1.0" encoding="utf-8"?>
<s:Application 
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="http://www.adobe.com/2006/mxml">
    <s:layout>
        <s:TileLayout orientation="columns" requestedRowCount="2" />
    </s:layout>
    <mx:Button label="One" />
    <mx:Button label="Two" />
    <mx:Button label="Three" />
</s:Application>

   
  
Related examples in the same category
www._ja__v___a_2s__._c__o___m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.