我正在使用扩展BorderContainer
类在 Flex 中创建一个自定义组件,并且当我在主应用程序中使用它时,我希望能够在标签集中放置其他内容,如下所示:
<components:CustomComponent title="Hello">
<s:Label text="If you have one enter it below:"/>
<mx:Spacer height="15" />
<s:HGroup>
<s:TextInput width="250"/>
<s:Button label="Submit"/>
</s:HGroup>
</components:CustomComponent>
这工作得很好,除了我的组件定义里面有一些额外的东西,比如 a<s:Label/>
和样式,当我去使用它时,它被上面的标签集中的内容所取代。
如果我没有在标签集中放置任何内容,则不会替换组件中最初的内容。
有没有一种方法可以让我在使用组件时简单地在组件内附加其他内容,而不是每次都替换它?
感谢您的时间!