答案 0 :(得分:1)
有一个可以直接使用的火花形式元素,你可以在那里加上标题。
从源http://help.adobe.com/en_US/flex/using/WSc5cd04c102ae3e973827a8e912ac2b325a4-8000.html
复制
<s:Form id="myForm" width="450" height="125">
<s:FormHeading label="Spark Form Heading" />
<s:FormItem label="Username:">
<s:TextInput id="username" />
<s:helpContent>
<s:Label text="Enter your LDAP username" />
</s:helpContent>
</s:FormItem>
</s:Form>
如果您只想对元素进行分组,则需要查看自定义组件(如果它们提供了源代码,您只需修改它们),例如
https://www.assembla.com/code/shinylib/subversion/nodes
http://jayachandrababu.blogspot.de/2010/01/groupbox-fieldset-legend-component.html
我希望有帮助
安德烈亚斯
答案 1 :(得分:0)
对面板进行蒙皮也可能有所帮助。您可以使用面板标题作为@Jason Sturges提供的链接。自定义面板的布局还将为您提供所需的组框。