<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:XML id="xmlFile" source="menu.xml"/>
<mx:Label text="人員名單" fontSize="18" x="595" y="70"/>
<!-- 定義grid:指定數(shù)據(jù)來源,表頭-->
<mx:DataGrid dataProvider="{xmlFile.order}" width="468" x="419" y="118" height="258">
<mx:columns>
<mx:DataGridColumn dataField="name" headerText="姓名" fontSize="14"/>
<mx:DataGridColumn dataField="rest" headerText="餐館名" fontSize="14"/>
<mx:DataGridColumn dataField="food" headerText="菜名" fontSize="14"/>
<mx:DataGridColumn dataField="time" headerText="時間" fontSize="14"/>
<mx:DataGridColumn dataField="ip" headerText="IP" fontSize="14" width="115"/>
<mx:DataGridColumn dataField="price" headerText="價錢" fontSize="14"/>
</mx:columns>
</mx:DataGrid>
</mx:Application>