窗体传值,Flex的父窗体与子窗体传值问题

1.API简介
Package : mx.managers
Class : PopUpManager
Methods : addPopUp(window:IFlexDisplayObject, parent:DisplayObject, modal:Boolean = false, childList:String = null):void
参数解释:
window : 要弹出的对象,这对象必须实现了IFlexDisplayObject接口,比如TitleWindow.
parent : 子窗口的父窗口对象.
modal : 模式弹出(true)还是非模式弹出(false).
childList : 弹出式对象在那个对象下弹出.
PopUpManagerChildList.APPLICATION
PopUpManagerChildList.POPUP
PopUpManagerChildList.PARENT (默认).
2.父窗体向子窗体传值
父窗体代码
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%">
<mx:Script>
<![CDATA[
import mx.events.ListEvent;
import com.demo.PersonVO;
import mx.events.ItemClickEvent;
import mx.collections.ArrayCollection;
import mx.managers.PopUpManager;
[Bindable]
private var testDataSource : ArrayCollection = new ArrayCollection(
[ {id : 1 ,name :"zhangsan",language : "java"},
{id : 2 ,name :"lisi",language : "c++"},
{id : 3 ,name :"qianwu",language : "vb"},
{id : 4 ,name :"xiaohong",language : "pb"},
{id : 5 ,name :"xiaoming",language : "perl"},
])
private function showDetailPersonInfo(event : ListEvent) : void
{
var personVO : PersonVO =new PersonVO();
personVO.id = event.currentTarget.selectedItem.id
personVO.name = event.currentTarget.selectedItem.name;
personVO.language = event.currentTarget.selectedItem.language;
//hard code the detail person information
personVO.email = "[email protected]"
personVO.married = false;
personVO.workYears = "3 years"
var personPopUpWindow : PersonInfomationPopWindow = new PersonInfomationPopWindow();
personPopUpWindow.personVO = personVO;
PopUpManager.addPopUp(personPopUpWindow,this,true);
PopUpManager.centerPopUp(personPopUpWindow);
}
]]>
</mx:Script>
<mx:DataGrid dataProvider="{testDataSource}" width="100%" height="100%" itemClick="showDetailPersonInfo(event)">
<mx:columns>
<mx:DataGridColumn dataField="id" headerText="编号" />
<mx:DataGridColumn dataField="name" headerText="名字" />
<mx:DataGridColumn dataField="language" headerText="开发语言" />
</mx:columns>
</mx:DataGrid>
</mx:Application>
------------------------------
子窗体代码
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow
xmlns:mx="http://www.adobe.com/2006/mxml"
width="400" height="300"
showCloseButton="true"
close="PopUpManager.removePopUp(this)">
<mx:VBox width="400" height="200" paddingTop="10" >
<mx:HBox width="100%" paddingLeft="10">
<mx:Label width="40%" text="id:"/>
<mx:Label text="{personVO.id}"/>
</mx:HBox>
<mx:HBox width="100%" paddingLeft="10">
<mx:Label width="40%" text="name:"/>
<mx:Label text="{personVO.name}"/>
</mx:HBox>
<mx:HBox width="100%" paddingLeft="10">
<mx:Label width="40%" text="language:"/>
<mx:Label text="{personVO.language}"/>
</mx:HBox>
<mx:HBox width="100%" paddingLeft="10">
<mx:Label width="40%" text="workYears:"/>
<mx:Label text="{personVO.workYears}"/>
</mx:HBox>
<mx:HBox width="100%" paddingLeft="10">
<mx:Label width="40%" text="married:"/>
<mx:Label text="{personVO.married}"/>
</mx:HBox>
</mx:VBox>
<mx:Script>
<![CDATA[
import mx.managers.PopUpManager;
import com.demo.PersonVO;
[Bindable]
public var personVO : PersonVO = null;
]]>
</mx:Script>
</mx:TitleWindow>
-------------------------------------------
package com.demo
{
[Bindable]
public class PersonVO
{
public var id : String = "";
public var name : String = "";
public var language : String = "";
public var email : String = "";
public var workYears : String = "";
public var married : Boolean = false;
}
}
3.子窗体向父窗体传值
父窗体代码
<?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/halo"
minWidth="1024" minHeight="768">
<s:layout>
<s:BasicLayout/>
</s:layout>
<fx:Script>
<![CDATA[
import mx.containers.TitleWindow;
import mx.managers.PopUpManager;
import mx.controls.Text;
private var tw:titlewindow=new titlewindow();
private function mytw_click():void{
tw.owner = this;
PopUpManager.addPopUp(tw,this);
PopUpManager.centerPopUp(tw);
}
]]>
</fx:Script>
<mx:Panel x="94" y="178" width="503" height="347" layout="absolute">
<mx:TextInput x="134" y="64" id="tit_usr" text="username"/>
<mx:TextInput x="134" y="125" id="tit_psw" text="password"/>
<mx:Button x="171" y="209" label="Submit" click="mytw_click()"/>
</mx:Panel>
</s:Application>
-------------------------
子窗体代码
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute"
width="498" height="368"
showCloseButton="true"
close="PopUpManager.removePopUp(this)">
<mx:Script>
<![CDATA[
import mx.controls.Alert;
import mx.managers.PopUpManager;
import mx.controls.Text;
private function btn_click():void{
//dispatchEvent(new Event("tw_click"));
var a:PopUpDemo_1 = this.owner as PopUpDemo_1;
a.tit_usr.text = this.tw_usr.text;
a.tit_psw.text = this.tw_psw.text;
PopUpManager.removePopUp(this);
}
]]>
</mx:Script>
<mx:Label x="96" y="67" text="username" width="97" height="26"/>
<mx:Label x="96" y="128" text="password" width="97" height="24"/>
<mx:TextInput x="217" y="65" id="tw_usr"/>
<mx:TextInput x="217" y="126" id="tw_psw"/>
<mx:Button x="228" y="239" label="Click" click="btn_click()"/>
</mx:TitleWindow>
Tags:  窗体传值

延伸阅读

最新评论

发表评论