主程序:
Java代码
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
backgroundGradientAlphas="[0x000000,0x00ffff]"
xmlns:dataEntryContorls="com.flexCoreComponents.uiContorls.dataEntryContorls.*" xmlns:local="*">
<dataEntryContorls:DateChooser />
</mx:Application>
CheckBox_flex3引用代码
Java代码
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
protected function date1_changeHandler(date:Date):void
{
label_1.text = "date:" + date.getFullYear();
}
]]>
</mx:Script>
<mx:VBox>
<mx:DateChooser change="date1_changeHandler(DateChooser(event.target).selectedDate" />
<mx:Label id="label_1" text="date:" />
</mx:VBox>
</mx:Canvas>
问题是date1_changeHandler(DateChooser(event.target).selectedDate中的selectedDate属性没有,这是为什么啊?
蓝山帝景
小怪兽爱吃肉
弑天下
相关分类