0

嗨,

是否可以在 Accordion 大小更改的同时调整应用程序的大小,以使调整大小与最后一个与应用程序的调整大小同步?

在我的代码中,应用程序在 Accordion 调整大小完成后调整大小:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                layout="absolute" minWidth="400" minHeight="300" backgroundColor="white" horizontalScrollPolicy="off" verticalScrollPolicy="off" mouseDown="stage.nativeWindow.startMove()">



    <mx:Resize id="expand" target="{application}" heightTo="{acc01.height}"/>
    <mx:Accordion id="acc01" x="0" y="0" resizeToContent="true" resize="expand.play();" horizontalScrollPolicy="off" verticalScrollPolicy="off">
        <mx:VBox label="Accordion Pane 1" width="100%" height="100%">            
            <mx:Label text="hello"/>
            <mx:Label text="hello"/>
            <mx:Label text="hello"/>
            <mx:Label text="hello"/>
        </mx:VBox>
        <mx:VBox label="Panel 2" width="100%" height="100%">
            <mx:Label text="hello"/>
            <mx:Label text="hello"/>
        </mx:VBox>
        <mx:VBox label="Panel 3" width="100%" height="100%">
               <mx:Label text="hello"/>
            <mx:Label text="hello"/>
        </mx:VBox>
        <mx:VBox label="Panel 4" width="100%" height="100%">
               <mx:Label text="hello"/>
            <mx:Label text="hello"/>
        </mx:VBox>
    </mx:Accordion>
</mx:Application>
4

1 回答 1

1

看看http://livedocs.adobe.com/flex/3/langref/mx/effects/Parallel.html,它可能会满足您的需求。

于 2010-06-12T18:24:29.227 回答