| 1 |
<?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 |
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="init()"> |
|---|
| 3 |
<mx:Script source="amfTest.as"/> |
|---|
| 4 |
<mx:TextInput id="tN1" x="27" y="32" width="60" height="22" text=""/> |
|---|
| 5 |
<mx:Label id="_label2" x="105" y="35" width="18" height="22" text="+"/> |
|---|
| 6 |
<mx:TextInput id="tN2" x="130" y="32" width="60" height="22" text=""/> |
|---|
| 7 |
<mx:Button id="bCalculator" x="205" y="32" width="60" height="22" label="=" click="bCalculator_clickEvent(event)"/> |
|---|
| 8 |
<mx:TextInput id="tAnswer" x="283" y="33" width="60" height="22" text=""/> |
|---|
| 9 |
<mx:DataGrid id="dgQuery" x="29" y="89" width="316" height="194" dataProvider="{dgQuery_data}"> |
|---|
| 10 |
<mx:columns> |
|---|
| 11 |
<mx:DataGridColumn dataField="name" headerText="name"/> |
|---|
| 12 |
<mx:DataGridColumn dataField="age" headerText="age"/> |
|---|
| 13 |
</mx:columns> |
|---|
| 14 |
</mx:DataGrid> |
|---|
| 15 |
<mx:Button id="bQuery" x="281" y="298" width="60" height="22" label="query" click="bQuery_clickEvent(event)"/> |
|---|
| 16 |
|
|---|
| 17 |
</mx:WindowedApplication> |
|---|