我跟着一個例子來顯示一個列表和代碼如下...檢測TileListItemRenderer Flex中
<mx:TileList id="tileList"
dataProvider="{xmlListColl}"
itemRenderer="TileListItemRenderer"
columnCount="3"
columnWidth="150"
rowCount="2"
rowHeight="100" />
的itemRenderer是:
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"
x="496" y="10" width="221" height="317" backgroundColor="#98AEEF">
<mx:Image source="{[email protected]}"
horizontalCenter="0"
verticalCenter="0" />
<mx:Label text="{[email protected]}"
fontWeight="bold"
horizontalCenter="0"
bottom="0" />
</mx:Canvas>
現在我想幫助有這些圖像與拖動啓用。所有dragDrop函數都在主要的mxml文件中......我有點迷失在這裏。任何其他信息,請不要問我。
謝謝
是否需要拖拽排序列表的功能? – eterps