Flex RoundCorner
<?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
import mx.utils.GraphicsUtil;
import flash.display.Graphics;
[Bindable]
public var gradientColors:Array;
[Bindable]
public var gradientAlphas:Array;
[Bindable]
public var gradientRatios:Array;
[Bindable]
public var gradientAngle:int;
[Bindable]
public var innerRadius:Number;
[Bindable]
public var roundCornerFlag : Boolean = true;
[Bindable]
public var topLeftRadius : Number = 0;
[Bindable]
public var topRightRadius : Number = 0;
[Bindable]
public var bottomLeftRadius : Number = 0;
[Bindable]
public var bottomRightRadius : Number = 0;
override protected function updateDisplayList(unscaledWidth : Number, unscaledHeight : Number) : void
{
super.updateDisplayList(unscaledWidth, unscaledHeight);
var fillType:String = GradientType.LINEAR;
var colors:Array = gradientColors;
var alphas:Array = gradientAlphas;
var ratios:Array = gradientRatios;
var matrix:Matrix = new Matrix();
matrix.createGradientBox(unscaledWidth, unscaledHeight, (gradientAngle * Math.PI/180));
var spreadMethod:String = SpreadMethod.PAD;
graphics.clear();
graphics.beginGradientFill(fillType, colors, alphas, ratios, matrix, spreadMethod);
if(roundCornerFlag)
{
drawAllRoundCorner(graphics, unscaledWidth, unscaledHeight);
}
else
{
customizeRoundCorner(graphics, unscaledWidth, unscaledHeight);
}
graphics.endFill();
}
public function drawAllRoundCorner(graphics : Graphics, unscaledWidth : Number, unscaledHeight : Number) : void
{
if(isNaN(innerRadius))
{
graphics.drawRect(1, 1, unscaledWidth - 1, unscaledHeight - 1);
}
else
{
graphics.drawRoundRect(1, 1, unscaledWidth - 2, unscaledHeight - 2, innerRadius);
}
}
public function customizeRoundCorner(graphics : Graphics, unscaledWidth : Number, unscaledHeight : Number) : void
{
GraphicsUtil.drawRoundRectComplex(graphics, 1, 1, unscaledWidth - 2, unscaledHeight - 2,
topLeftRadius,topRightRadius, bottomLeftRadius, bottomRightRadius);
}
]]>
</mx:Script>
</mx:VBox>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
XML이란 무엇입니까?이것은 저장, 검색 및 공유할 수 있는 형식으로 데이터를 저장하는 강력한 방법입니다. 가장 중요한 것은 XML의 기본 형식이 표준화되어 있기 때문에 시스템이나 플랫폼 간에 로컬 또는 인터넷을 통해 XML을 공유하거나...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.