Flex文本项呈示器多行

我正在构建项目渲染器以获取这些列表。 在这些项目渲染器中,第一部分是应该有2行文本然后截断它的文本组件,第二部分只是一个标签。 我试图找到如何将文本组件放在两行上。 你可以帮我吗?

谢谢


使用Vgroup。 在它里面放置两个TextArea组件。
把它放在HGroup的旁边

<s:HGroup left="10" right="10" top="10" bottom="10">
    <s:VGroup left="10" right="10" top="10" bottom="10" gap="0">
        <s:TextArea id="row1_text" width="400" height="100"/>
        <s:TextArea id="row2_text" width="400" height="100"/>
    </s:VGroup>

    <s:Label id="myLabel"/>
</s:HGroup>
链接地址: http://www.djcxy.com/p/34585.html

上一篇: Flex text item renderer multiple row

下一篇: Delay in opening combobox when using an item renderer