Flexのデータグリッド

by umhr
♥0 | Line 19 | Modified 2009-08-26 02:09:02 | MIT License
play

ActionScript3 source code

/**
 * Copyright umhr ( http://wonderfl.net/user/umhr )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/vgBx
 */

<?xml version="1.0" encoding="utf-8"?>
<!--
/*
Flexのデータグリッド
http://www.atmarkit.co.jp/fwcr/rensai/flexjissen03/flexjissen03_01.html
*/
-->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
                layout="horizontal">
    <mx:Array id="recipe">
        <mx:String>さばのみそ煮</mx:String>
        <mx:String>キホンのギョーザ</mx:String>
        <mx:String>親子丼</mx:String>
        <mx:String>肉じゃが</mx:String>
        <mx:String>オムライス</mx:String>
        <mx:String>ハンバーグ</mx:String>
        <mx:String>マカロニグラタン</mx:String>
        <mx:String>鶏のから揚げ</mx:String>
    </mx:Array>

    <mx:List dataProvider="{recipe}" width="200" height="300"
         dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" />

    <mx:List width="200" height="300" dropEnabled="true" />
</mx:Application>