Degrafa:GraphicBorderSkin不能作为画布背景通过:borderSkin:ClassReference

时间:2009-09-21 06:43:38

标签: flex degrafa

Degrafa新手在这里:-)。

我能够获得“com.degrafa.skins.CSSSkin”来创建线性渐变背景。现在,当我试图找出径向渐变时,我正在进入更先进的东西......

我通过观看Flex-skinning-with-degrafa-screencast来解决这个问题,但我的代码对我不起作用,而且我的画布上有白色背景。

这是我到目前为止的代码:

我有一个MXML组件ThreeWayGrad.mxml,它扩展了Canvas并具有ThreeWayGradient的styleName:

<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas 
    xmlns:mx="http://www.adobe.com/2006/mxml" 
    styleName="ThreeWayGradient"/> 

我有一个ThreeWayGradient的CSS样式条目,带有RadialGradient类的外观标记:

Canvas.ThreeWayGradient 
{
    borderSkin: ClassReference("assets.skins.RadialGradient");
}

最后这里是RadialGradient.mxml组件:​​

<?xml version="1.0" encoding="utf-8"?>
<GraphicBorderSkin
 xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns="http://www.degrafa.com/2007"> 

    <mx:Script>
        <![CDATA[
            [Bindable] private var _height:Number = 0;
            [Bindable] private var _width:Number = 0;

            override protected 
                function updateDisplayList(w:Number, h:Number):void 
            {
                super.updateDisplayList(w, h);
                _height = h; 
                _width  = w;
                trace("INFO: displaylist updated --" + _height + " : " + _width );
            }
        ]]>
    </mx:Script>
     <strokes>
         <SolidStroke id="mainStroke" color="#333333" weight="3"/>
     </strokes>
        <fills>
            <RadialGradientFill    
             id="blueGradient"
             angle="45"
             focalPointRatio="0">
                <GradientStop 
                 alpha="1"
                    ratio=".25"
                    color="#ffffff"/> 
                <GradientStop 
                 alpha="1"
                    ratio=".70"
                    color="#003355"/>
                <GradientStop 
                    alpha="1"
                    ratio="1"
                    color="#111111"/>
            </RadialGradientFill>
        </fills>
        <!-- Creating the background -->
        <geometry>
         <GeometryComposition>
             <!-- Creating a Rectangle to draw the gradient to and 
             moving the center of the gradient to the lower left corner -->
             <RegularRectangle  
              fill="{blueGradient}" 
              stroke="{mainStroke}"
                 height="{_height}"
                 width="{_width}" 
                 />
         </GeometryComposition> 
        </geometry>
</GraphicBorderSkin>

有谁知道为什么这不起作用?我看到跟踪输出的大小正确,所以我知道这个类正在调用。

我还使用Surface而不是GraphicBorderSkin元素和GeometryGroup而不是GeometryComposition将此代码复制到新的Application中,并且它可以工作。无论如何,我确定我错过了一些简单的事情,并提前感谢!!!

1 个答案:

答案 0 :(得分:1)

您应该可以使用这样的皮肤代码(skinWidth和skinHeight在GraphicBorderSkin中公开,因此您不需要覆盖updateDisplayList并为宽度和高度指定其他局部变量):

<?xml version="1.0" encoding="utf-8"?>
<GraphicBorderSkin
 xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns="http://www.degrafa.com/2007"> 

     <strokes>
         <SolidStroke id="mainStroke" color="#333333" weight="3"/>
     </strokes>
        <fills>
            <RadialGradientFill    
             id="blueGradient"
             angle="0"
             focalPointRatio="0">
                <GradientStop 
                 alpha="1"
                    ratio=".25"
                    color="#ffffff"/> 
                <GradientStop 
                 alpha="1"
                    ratio=".70"
                    color="#003355"/>
                <GradientStop 
                    alpha="1"
                    ratio="1"
                    color="#111111"/>
            </RadialGradientFill>
        </fills>
        <!-- Creating the background -->
        <geometry>
        <!-- Creating a Rectangle to draw the gradient to and 
             moving the center of the gradient to the lower left corner -->
             <RegularRectangle  id="rect"
              fill="{blueGradient}" 
              stroke="{mainStroke}"
              height="{skinHeight}"
                 width="{skinWidth}" 
                 />
                 <!-- Alernative:   <RegularRectangle fill="{blueGradient}" stroke="{mainStroke}" height="100%" width="100%"/> -->
        </geometry>
</GraphicBorderSkin>

在这种情况下,您不需要包含RegularRectangle的GeometryComposition。我还与Jason Hawryluk(Degrafa架构师)讨论了这个问题,他指出了通过Geometry布局支持指定的替代方法 - 请参阅布局驱动示例的注释标记“Alternative”。

对于Canvas,您需要为其绘制宽度和高度设置:

<mx:Canvas 
    xmlns:mx="http://www.adobe.com/2006/mxml" width="50%" height="50%"
    styleName="ThreeWayGradient"/>