如何在下一个mxml页面中打印一个值,其中给定的输入来自prev页面?

时间:2012-01-18 06:26:33

标签: flex

<?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"
               width="1501" height="960" minWidth="955" minHeight="600">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
        <![CDATA[
            protected function c_clickHandler(event:MouseEvent):void
            {
                viewstack1.selectedIndex = 2;
            }
        ]]>
    </fx:Script>
    <fx:DesignLayer>



    </fx:DesignLayer>
    <mx:ViewStack id="viewstack1" x="357" y="256" width="624" height="200">
        <s:NavigatorContent width="100%" height="100%" label="configuration"
                            backgroundColor="#F7C2C2">
            <s:Button x="261" y="72" id="c" click="c_clickHandler(event)" label="new config"/>
            <s:TextInput x="240" y="25"/>
        </s:NavigatorContent>
        <s:NavigatorContent width="100%" height="100%" label="system" backgroundColor="#F45F5F">
            <s:TextArea x="218" y="39" height="35"/>
        </s:NavigatorContent>
    </mx:ViewStack>
    <s:ButtonBar x="531" y="224" dataProvider="{viewstack1}"/>

</s:Application>

我在配置标签中有一个文本输入框。当用户输入一个输入并单击“设置新配置”按钮时,它将进入一个将存在文本框的系统。在该文本框中,将显示prev输入。 这该怎么做? 你能给我一些代码吗? 感谢

1 个答案:

答案 0 :(得分:0)

使用绑定

配置标签中的文字输入

 `<s:TextInput x="240" y="25" id="_txt"/>

并将另一个标签中的文字设置为

<s:TextArea text="{_txt.text}"/>

`