微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

FLEX学习-4 登录界面

1、在flash builder 4.0中新建一个MXML应用程序;

2、在.mxml中增加如下的内容

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx=" http://ns.adobe.com/mxml/2009"
      xmlns:s="library://ns.adobe.com/flex/spark"
      xmlns:mx="library://ns.adobe.com/flex/mx">
 <fx:Declarations>
  <mx:StringValidator source="{username}" property="text" minLength="4" maxLength="10" />
 </fx:Declarations>
 <s:Panel title="Form Container Example"
    width="75%" height="75%"
    horizontalCenter="0" verticalCenter="0"> 
  <s:VGroup left="10" right="10" top="10" bottom="10">
   <mx:Form x="10" y="10" width="300" height="152" defaultButton="{submitButton}">
    <mx:Formheading label="用户登录"/>
    <mx:FormItem label="用户名:">
     <s:TextInput id="username" />
    </mx:FormItem>
    <mx:FormItem label="密码:" >
     <s:TextInput id="password"  />
     <s:Button id="submitButton" label="提交" />
    </mx:FormItem>
   </mx:Form>
  </s:VGroup>
 </s:Panel>
</s:Application>

4、编译后为如下效果

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐