ComboBox's default property is dataProvider : ComboBox Data « Components « Flex
- Flex
- Components
- ComboBox Data
ComboBox's default property is dataProvider

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:ComboBox>
<mx:ArrayCollection>
<mx:String>A</mx:String>
<mx:String>B</mx:String>
<mx:String>C</mx:String>
</mx:ArrayCollection>
</mx:ComboBox>
</mx:Application>
Related examples in the same category