Как сделать видимой группу в вертикальной ширине, которая содержит RichText и установить ее высоту, чтобы соответствовать RichText? - PullRequest
0 голосов
/ 20 ноября 2010

Здесь я хочу сделать notifyPanel видимым после изменения его состояния с плавным переходом. Но я хочу, чтобы notifyText имел собственную высоту, я имею в виду, что если у мультилинии есть некоторая высота, то у другой Из-за этого я не могу просто установить notifyPanel.height = 20

<s:Group width="100%" height="100%" minHeight="10">
        <s:layout>
            <s:VerticalLayout gap="0"/>
        </s:layout>

<!-- Here I want to make notifyPanel visible after changed to it's state, with a smooth transition. But I want to let the notifyText to have it's own height, what I mean is that if it's multiline has some height if not, have other. Because of this i can't just set the notifyPanel.height = 20 -->
        <s:Group id="notifyPanel" width="100%" minHeight="0">
            <s:Rect height="100%" width="100%">
                <s:fill>
                    <s:SolidColor color="#48E200"/>
                </s:fill>
            </s:Rect>
            <s:RichText id="notifyText" color="#ffffff" top="5" left="10" bottom="5" right="10" text="RichText"/>
        </s:Group>


        <s:Group height="100%" width="100%">
            <s:Rect height="100%" width="100%">
                <s:fill>
                    <s:SolidColor color="#FFFFFF"/>
                </s:fill>
            </s:Rect>
            <s:Group id="contentGroup" left="0" right="0" top="0" bottom="0" minWidth="0" minHeight="0"/>
        </s:Group>


    </s:Group>

1 Ответ

0 голосов
/ 26 ноября 2010

Удалите ширину и высоту на панели notifyPanel, чтобы размер ее содержимого соответствовал ее размеру. Также удалите ограничения для notifyText, чтобы он также соответствовал своему содержимому. Управляйте общими ограничениями, установив minHeight и maxHeight на notifyPanel.

<s:Group id="notifyPanel">
   <s:Rect height="100%" width="100%">
       <s:fill>
          <s:SolidColor color="#48E200"/>
       </s:fill>
   </s:Rect>
   <s:RichText id="notifyText" color="#ffffff" text="RichText"/>
</s:Group>
...