WEB开发网
开发学院图形图像Flash 跟我StepByStep学FLEX教程------Demo5之事件... 阅读

跟我StepByStep学FLEX教程------Demo5之事件Event

 2009-09-09 00:00:00 来源:WEB开发网   
核心提示:Demo的运行效果: 源码如下:<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout=&q

Demo的运行效果:

跟我StepByStep学FLEX教程------Demo5之事件Event

源码如下:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="creationBtnHandler(event)">
 <mx:Script>
  <![CDATA[
   import mx.controls.Alert;   
   
   private function test1ClickHandler(e:MouseEvent):void {
    mxmlRegInp.text= "MXML 中注册事件";
    Alert.show(e.currentTarget.toString());
   }
   
   private function creationBtnHandler(e:Event):void {
    eventTes3Btn.addEventListener(MouseEvent.CLICK, test3ClickHandler);
   }
   
   private function test3ClickHandler(e:Event):void {
    mxmlRegInp.text= "ActionScript 注册事件监听器";
   }
  ]]>
 </mx:Script>
 
 <mx:Button x="59" y="32" label="MXML 中注册事件" id="eventTes1Btn" click="test1ClickHandler(event)" fontSize="12" width="140"/>
 <mx:Button x="207" y="32" label="MXML 定义中创建线上事件" id="eventTes2Btn" click="mxmlRegInp.text='MXML 定义中创建线上事件'" fontSize="12" width="185"/>
 <mx:TextInput x="59" y="82" id="mxmlRegInp" fontSize="12" width="333" enabled="true" color="#13E409" fontWeight="bold" fontStyle="italic" editable="false"/>
 <mx:Button x="59" y="127" label="ActionScript 注册事件监听器" fontSize="12" width="333" id="eventTes3Btn"/>
 
</mx:Application>

这个Demo演示了Flex的三种事件方式,也就是按钮上写的名称:

1、MXML 中注册事件;

2、MXML 定义中创建线上事件;

3、ActionScript 注册事件监听器;

其中第2种方式仅供大家理解,作者不建议读者使用第2种方式在项目中实际应用,这种方式代码生硬,不易维护。

大家可以做一下这个Demo,下一讲将对事件event进行一些理论上的补充。

文章来源:http://wangyisong.javaeye.com/blog/373563

Tags:StepByStep FLEX 教程

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接