2010-06-12 19 views
0

海蘭,柔性:如何進行兩次調整同時影響

是否有可能在同一時刻來調整應用程序時,手風琴尺寸的變化,使效果調整OG中最近一次的調整大小同步申請?

在我的代碼,,完成手風琴的縮放後的應用程序的大小調整:

<?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> 

回答

相關問題