使用<mx:Object>来存储(一行)数据:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" >
<mx:Panel width="444" height="256" layout="absolute" title="使用Object组件">
<mx:DataGrid x="13" y="17" width="401" height="173">
<mx:dataProvider>
<mx:Object name="John Smith" department="技术部" email="john@163.com" />
<mx:Object name="Tom Steve" department="人力资源部" email="tom@163.com" />
<mx:Object name="fisher Steve" department="人力资源部" email="fisher@163.com" />
</mx:dataProvider>
</mx:DataGrid>
</mx:Panel>
</mx:Application>