0

私は mxml クラスを使用していましたが、構築時にいくつかのプロパティを渡す必要があるため、簡単にするために as3 コードに変換します。

クラスは RectangleShape で、長方形を描画するだけです。

元の mxml の作業

<?xml version="1.0" encoding="utf-8"?>
<BaseShape name="rectangle"
    xmlns="org.edorado.edoboard.view.components.shapes.*" 
    xmlns:mx="http://www.adobe.com/2006/mxml" 
    xmlns:degrafa="http://www.degrafa.com/2007"
    xmlns:objecthandles="com.roguedevelopment.objecthandles.*">

    <mx:Script>
        <![CDATA[

            import org.edorado.edoboard.view.components.shapes.IShape;
            import mx.events.FlexEvent;

            override public function drag(movePt:Point):void {
                this.width = movePt.x - this.x; 
                this.height = movePt.y - this.y; 
            }

            override public function updateFillColor(color:int):void {
                solidFill.color = color;
            }

        ]]>
    </mx:Script>

    <degrafa:Surface >
        <degrafa:GeometryGroup id="geo">
            <degrafa:fills>
                <degrafa:SolidFill id="solidFill" color="white" alpha="0.3"/>
            </degrafa:fills>

            <degrafa:strokes>
                <degrafa:SolidStroke id="stroke1" color="white"/>
            </degrafa:strokes>

            <degrafa:RegularRectangle 
                id="rect" 
                fill = "{solidFill}"
                width="{width}" 
                height="{height}"
                stroke="{stroke1}" />
        </degrafa:GeometryGroup>        
    </degrafa:Surface>
</BaseShape>

AS3への私の試み

パッケージ org.edorado.edoboard.view.components.shapes { import com.degrafa.geometry.RegularRectangle; com.degrafa.paint.SolidFill をインポートします。com.degrafa.paint.SolidStroke をインポートします。com.degrafa.GeometryGroup をインポートします。com.degrafa.Surface をインポートします。flash.geom.Point をインポートします。

public class RectangleShape extends BaseShape 
{
    public var surface:Surface = new Surface(); 
    public var geoGroup:GeometryGroup = new GeometryGroup();
    public var solidFill:SolidFill = new SolidFill("white");
    public var solidStroke:SolidStroke = new SolidStroke("black");
    public var rect:RegularRectangle = new RegularRectangle(); 

    public static const name:String = "rectangle";

    public function RectangleShape() {
        addChild(surface);
        //surface.addChild(geoGroup);
        surface.graphicsCollection.addItem(geoGroup); 

        solidFill.alpha = 0.3;
        rect.fill = solidFill;
        rect.stroke = solidStroke;
        rect.width = this.width;
        rect.height = this.height;
        geoGroup.geometry = [rect];
        geoGroup.draw(null, null); 
    }

    override public function drag(movePt:Point):void {

        this.width = movePt.x - this.x; 
        this.height = movePt.y - this.y; 
        trace('dragging ', this.width, this.height);
    }

    override public function updateFillColor(color:int):void {
        solidFill.color = color;
    }
}

}

問題は、形状が描画されなくなったことです。BaseShape コンテナーが存在し、トレース ドラッグが機能していることがわかりますが、四角形は表示されなくなりました。

私が見逃した明らかなものはありますか?ありがとう

4

3 に答える 3

3

BindingUtils クラスを使用してバインディングを設定してみてください。

例えば:

BindingUtils.bindProperty(component, "height", this, "height"); 
于 2008-11-26T19:16:03.777 に答える
0

私は問題を特定したと思います。以前の mxml バージョンでは、

幅="{幅}" 高さ="{高さ}"

degrafa の長方形は自動的にその親に適合します。

ただし、AS バージョンにはありません。{width} と {height} を As で再現してみます。mxml を as に変換するツールはありますか?

于 2008-11-26T14:08:16.457 に答える
0

RectangleShape を追加しましたか?

于 2009-05-26T15:25:00.793 に答える