| <s:ComboBox | |
| xmlns:fx="http://ns.adobe.com/mxml/2009" | |
| xmlns:mx="library://ns.adobe.com/flex/mx" | |
| xmlns:s="library://ns.adobe.com/flex/spark" | |
| height="24" width="147" | |
| labelField="fruit" | |
| dataProvider="{labelDP}"> | |
| <fx:Script> | |
| <![CDATA[ | |
| import mx.collections.ArrayCollection; | |
| [Bindable] | |
| public var labelDP:ArrayCollection = new ArrayCollection( | |
| [ {fruit:"Apple", price:0.25}, | |
| {fruit:"Pear", price:0.5}, | |
| {fruit:"Orange", price:0.75}, | |
| {fruit:"Plum", price:0.85} | |
| ]); | |
| ]]> | |
| </fx:Script> | |
| </s:ComboBox> |