AIR版的通讯簿(十四)

 <mx:ViewStack id="mainBox" width="100%" height="100%" >
  <mx:VBox width="100%" height="100%" id="listBox">
   <mx:HBox width="100%">
    <mx:Label text="客户名称"/>
    <mx:TextInput width="150" id="queryName"/>
    <mx:Label text="客户手机号"/>
    <mx:TextInput width="150" id="queryPhone"/>
    <mx:Button label="重置" useHandCursor="true" buttonMode="true" styleName="resetBtn" click="reset()"/>
    <mx:Button label="查 询" useHandCursor="true" buttonMode="true" styleName="searchBtn" click="queryList()"/>
    <mx:Spacer width="100%"/>
    <mx:LinkButton label="新增客户 " icon="@Embed(source='assets/images/add.png')" focusEnabled="false" click="addNewCus()"/>
    <mx:LinkButton label="返回首页 " icon="@Embed(source='assets/images/return.png')" focusEnabled="false" click="returnMain()"/>
   </mx:HBox>

你可能感兴趣的:(AIR版的通讯簿(十四))