您的位置:首页 > 移动开发

My first flex app

2019-08-01 21:19 1446 查看
原文链接:https://www.geek-share.com/detail/2471888840.html  1 <?xml version="1.0" encoding="utf-8"?>
 2 <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
 3 layout="horizontal">
 4 <mx:Script>
 5 <![CDATA[
 6 [Bindable]
 7 public var s:String="";
 8 ]]>
 9 </mx:Script>
10 <mx:TextInput id="myTextInput1"/>
11 <mx:Button label="Update my variable" click="s=myTextInput1.text"/>
12 <mx:Text id="myText" text="{s}"/>
13 </mx:Application>

 

转载于:https://www.cnblogs.com/zhtf2014/archive/2009/12/15/1625156.html

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: