当前位置: > > > Flex4 - 给group添加背景色和边框

Flex4 - 给group添加背景色和边框

在Flex4中,使用BorderContainer可以方便的设置背景色和边框。
对于Group,通过内部添加Rect也可以实现同样的效果。

代码如下(给Group添加黑色背景和红色边框):
<s:Group width="300" height="300" horizontalCenter="0" verticalCenter="0">
	<s:Rect  id="bg" width="100%" height="100%">
		<s:fill>
			<s:SolidColor color="0x000000"/>
		</s:fill>
		<s:stroke>
			<s:SolidColorStroke color="0xff0000" weight="1"/>
		</s:stroke>
	</s:Rect>
</s:Group>
评论0