AIR版的通讯簿(四)

来源:互联网 发布:b2b系统源码 编辑:程序博客网 时间:2024/04/28 21:40
 <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
  styleName="application" showStatusBar="false" title="麒麟通讯簿" titleIcon="{img}"
  titleTextStyleName="titleText" initialize="init()">
 <mx:Style source="assets/style/main.css"/>
 <mx:ViewStack width="100%" height="100%" id="mainContainer">
  <mx:HBox width="100%" height="100%" horizontalAlign="center" verticalAlign="middle" id="menuList">
   <mx:HBox width="160" height="60" styleName="myBox">
    <mx:Image source="assets/images/customer.png" mouseChildren="false" useHandCursor="true" buttonMode="true" click="manageIt('customer')"/>
    <mx:Text text="客户信息管理" styleName="labelText" mouseChildren="false" useHandCursor="true" buttonMode="true" click="manageIt('customer')"/>
   </mx:HBox>
   <mx:HBox width="160" height="60" styleName="myBox">
    <mx:Image source="assets/images/group.png" mouseChildren="false" useHandCursor="true" buttonMode="true" click="manageIt('employee')"/>
    <mx:Text text="员工信息管理" styleName="labelText" mouseChildren="false" useHandCursor="true" buttonMode="true" click="manageIt('employee')"/>
   </mx:HBox>
   <mx:HBox width="160" height="60" styleName="myBox">
    <mx:Image source="assets/images/money.png" mouseChildren="false" useHandCursor="true" buttonMode="true" click="manageIt('money')"/>
    <mx:Text text="日常开销管理" styleName="labelText" mouseChildren="false" useHandCursor="true" buttonMode="true" click="manageIt('money')"/>
   </mx:HBox>
  </mx:HBox>
  <mx:VBox width="100%" height="100%" id="mainOperArea"/>
 </mx:ViewStack>
 
 <mx:HBox width="100%" horizontalAlign="center" verticalAlign="middle">
  <mx:Text text="Copyright © 2012  彩虹软件    All Rights Reserved "/>
  <mx:Image source="assets/images/rainbow.png"/>
 </mx:HBox>
</mx:WindowedApplication>
原创粉丝点击