默认情况下,如果在VBox上设置cornerRadius
,则会影响所有四个角。如何仅将cornerRadius应用于左下角和右下角?
答案 0 :(得分:5)
扩展VBox组件并覆盖updateDisplayList方法,如下所述: -
override protected function updateDisplayList(unscaledWidth:Number,
unscaledHeight:Number):void
{
super.updateDisplayList(unscaledWidth, unscaledHeight);
var cornerRadius:Number = getStyle("cornerRadius");
var backgroundColor:int = getStyle("backgroundColor");
var backgroundAlpha:Number = getStyle("backgroundAlpha");
graphics.clear();
// Background
drawRoundRect(0, 0, unscaledWidth, unscaledHeight,
{tl: 0, tr: 0, bl: cornerRadius, br: cornerRadius},
backgroundColor, backgroundAlpha);
}
答案 1 :(得分:2)
在flex3中,我使用了borderkin而不是扩展VBox。但我建议你去flex4(我的意见)。
=============================================== ===============================
在flex4中,
你必须使用皮肤类,而s:Rect有一个属性,你可以使用它来对所有四个角应用不同的角半径。
查看此链接:
您可以将BorderContainer与垂直布局一起使用。
VGroup也是VBox的,但是它不支持换肤。(我的意思是没有定义skinClass属性)
<s:VGroup skinClass=""/>----not defined
<s:BorderContainer skinClass="bcSkin"/>----defined, apply custom skin
SO BorderContainer是带有垂直布局的gud 1。
由于
ANKUR
答案 2 :(得分:2)
试试这个: - 修改上面这样的代码(代码为 - user1367714)
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:local="*">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<local:stackOverflowCornerRadious x="50" y="50" width="200" height="200"/>
</s:Application>
ClassName: - stackOverflowCornerRadious
package
{
import flash.display.Sprite;
import mx.containers.Box;
import mx.containers.VBox;
import mx.utils.GraphicsUtil;
import spark.primitives.Rect;
public class stackOverflowCornerRadious extends VBox
{
public function stackOverflowCornerRadious()
{
super();
}
override protected function updateDisplayList(unscaledWidth:Number,
unscaledHeight:Number):void
{
super.updateDisplayList(unscaledWidth, unscaledHeight);
graphics.clear();
graphics.beginFill(0x00FF00);
GraphicsUtil.drawRoundRectComplex(graphics,0,0,unscaledWidth,unscaledHeight,0,0,10,10)
graphics.endFill();
}
}
}