특별한딸기이야기

listbox 본문

딸기 공부방/flex

listbox

특별한녀석 2008. 12. 26. 16:33
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
 <mx:Script>
  <![CDATA[
   import mx.controls.Alert;
  
   private function onChange() : void
   {
    var msg : String;
    
    msg = "selectedIndex - " + String(lstFruits.selectedIndex) + "\n";
    msg += "selectedItem.Code - " + String(lstFruits.selectedItem.code) + "\n";
    msg += "selectedItem.Label - " + String(lstFruits.selectedItem.label);    
    Alert.show(msg);
   }
  ]]>
 </mx:Script>
 <mx:Array id="fruit">
  <mx:Object label="사과" code="55" />
  <mx:Object label="배" code="66" />
  <mx:Object label="복숭아" code="77" />
  <mx:Object label="감" code="88" />
  <mx:Object label="자두" code="99" />
 </mx:Array>
 <mx:List x="100" y="100" width="200" height="100" id="lstFruits" dataProvider="{fruit}" fontSize="12" change="onChange()" />
</mx:Application>

'딸기 공부방 > flex' 카테고리의 다른 글

horizontallist, tilelist  (0) 2008.12.26
combobox  (0) 2008.12.26
바인딩  (1) 2008.12.26
버튼으로 숫자선택  (0) 2008.12.26
색상선택  (0) 2008.12.26