3

子のサイズが変更されたときに、親のコンテナ (グループなど) のサイズを変更する簡単な方法はありますか?

以下は小さなアプリの例です。200x200 の「食べ物」を「胃」に入れると、胃と 100x100 の「体」が含まれており、食べ物を含むようにサイズを変更する必要があります。

何か案は?

(この要点http://gist.github.com/301292から)

<?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"
      creationComplete="application1_creationCompleteHandler(event)">
 <fx:Script>
  <![CDATA[
   import mx.events.FlexEvent;

   protected function application1_creationCompleteHandler(event:FlexEvent):void {

   }

   protected function eatFoodTrigger_clickHandler(event:MouseEvent):void {
    var food:Border = new Border();
    food.setStyle('backgroundColor', 0x15DCA9);
    food.width = 200;
    food.height = 200;

    stomach.addElement(food);

   }
  ]]>
 </fx:Script>

 <s:Group verticalCenter="0" horizontalCenter="0">
  <s:layout>
   <s:VerticalLayout horizontalAlign="center" />
  </s:layout>

  <s:Label fontSize="24" text="The 100x100 pink/brown body has a stomach inside it.
     Press eat and the stomach gets 200x200 'food' added to it.
     I want the body and the stomach to expand to fit the food." width="200">
  </s:Label>

  <s:Border id="body"
      backgroundColor="0x333333"
      minWidth="100"
      minHeight="100"
      borderColor="0xFF4466"
      borderWeight="5">
   <s:Group id="stomach">
   </s:Group>
  </s:Border>

  <s:Button id="eatFoodTrigger" click="eatFoodTrigger_clickHandler(event)" label="eat" />
 </s:Group>
</s:Application>
4

2 に答える 2

1

明らかに、これは少し遅すぎますが、addElementAt メソッドをオーバーライドして、そこにサイズ変更のための機能を追加することもできました。以下に、 addElementAdd() をオーバーライドする必要がある/オーバーライドできる方法を示します。

//This would be placed in a custom component that extends Group. Your stomach would be this component.
override public function addElementAt(element:IVisualElement, index:int):IVisualElement
{
    super.addElementAt(element, index);

    ChangeWatcher.watch(element, "width", function():void{ resizeHandler(element) });
    ChangeWatcher.watch(element, "height", function():void{ resizeHandler(element) });
}

private function resizeHandler(el:IVisualElement):void
{
    var element:DisplayObject = el as DisplayObject;

    //Rest of the resizing code.
}

これはflex3とCanvasで機能することを知っているので、flex4とGroupでも機能するはずです。

于 2011-07-25T09:51:06.657 に答える
1

これは Flex 4 SDK のバグであり、修正されました。素晴らしい。

から: http://forums.adobe.com/thread/575252

あなたの例は、最近のビルドでうまくいきます。古いビルドのバグだったのかもしれません。新しいナイトリー ビルドの 1 つを試してください。

http://opensource.adobe.com/wiki/display/flexsdk/DownloadFlex4

-ライアン

于 2010-02-12T02:28:44.167 に答える