| 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="SQLiteDataManager.as"/> |
|---|
| 4 |
<mx:Label id="_label1" x="20" y="18" width="45" height="22" text="Table:"/> |
|---|
| 5 |
<mx:ComboBox id="cbTableList" x="64" y="15" width="160" height="22" dataProvider="{cbTableList_data}" close="cbTableList_close(event)"/> |
|---|
| 6 |
<mx:Button id="bAddRow" x="596" y="38" width="48" height="22" label="Add" click="bAddRow_click(event)"/> |
|---|
| 7 |
<mx:Button id="bDelRow" x="652" y="38" width="48" height="22" label="Del" click="bDelRow_click(event)"/> |
|---|
| 8 |
</mx:WindowedApplication> |
|---|