2012-01-22 33 views
1

hostComponent似乎已停止工作,因爲它以前用過。如果我創建一個自定義組件,可以讓我們說SkinnableContainer並應用默認皮膚,我無法看到皮膚的Bindable /公共變量的提示。下面的代碼來說明。Flex 4.6 hostComponent不再適用?

我在這裏錯過了什麼?其他組件/皮膚似乎也會發生這種情況。我正在使用最新的Flash Builder(4.6)。

< ---------元器件--------------->

<?xml version="1.0" encoding="utf-8"?> 
<s:SkinnableContainer xmlns:fx="http://ns.adobe.com/mxml/2009" 
         xmlns:s="library://ns.adobe.com/flex/spark" 
         xmlns:mx="library://ns.adobe.com/flex/mx" 
         width="400" height="300" skinClass="skins.testSkin"> 
    <fx:Declarations> 
     <!-- Place non-visual elements (e.g., services, value objects) here --> 
    </fx:Declarations> 

    <fx:Script> 
     <![CDATA[ 

      [Bindable] 
      public var test:String = "Test"; 

     ]]> 
    </fx:Script> 
</s:SkinnableContainer> 

< ----------- ------ Skin -------------->

<?xml version="1.0" encoding="utf-8"?> 
<s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" 
    xmlns:fb="http://ns.adobe.com/flashbuilder/2009" alpha.disabled="0.5"> 

    <fx:Metadata> 
    <![CDATA[ 
     /** 
     * @copy spark.skins.spark.ApplicationSkin#hostComponent 
     */ 
     [HostComponent("spark.components.SkinnableContainer")] 
    ]]> 
    </fx:Metadata> 

    <fx:Script fb:purpose="styling"> 
     <![CDATA[   
      /** 
      * @private 
      */ 
      override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number) : void 
      { 
       this.hostComponent 
       // Push backgroundColor and backgroundAlpha directly. 
       // Handle undefined backgroundColor by hiding the background object. 
       if (isNaN(getStyle("backgroundColor"))) 
       { 
        background.visible = false; 
       } 
       else 
       { 
        background.visible = true; 
        bgFill.color = getStyle("backgroundColor"); 
        bgFill.alpha = getStyle("backgroundAlpha"); 
       } 

       super.updateDisplayList(unscaledWidth, unscaledHeight); 
      } 
     ]]>   
    </fx:Script> 

    <s:states> 
     <s:State name="normal" /> 
     <s:State name="disabled" /> 
    </s:states> 

    <!--- Defines the appearance of the SkinnableContainer class's background. --> 
    <s:Rect id="background" left="0" right="0" top="0" bottom="0"> 
     <s:fill> 
      <!--- @private --> 
      <s:SolidColor id="bgFill" color="#FFFFFF"/> 
     </s:fill> 
    </s:Rect> 

    <!-- 
     Note: setting the minimum size to 0 here so that changes to the host component's 
     size will not be thwarted by this skin part's minimum size. This is a compromise, 
     more about it here: http://bugs.adobe.com/jira/browse/SDK-21143 
    --> 
    <!--- @copy spark.components.SkinnableContainer#contentGroup --> 
    <s:Group id="contentGroup" left="0" right="0" top="0" bottom="0" minWidth="0" minHeight="0"> 
     <s:layout> 
      <s:BasicLayout/> 
     </s:layout> 
    </s:Group> 

</s:Skin> 
+0

如果您想要獲取代碼提示,您的皮膚中的[[HostComponent(「spark.components.SkinnableContainer」)]指令需要指定自定義組件(例如'MyComponent'),而不僅僅是'SkinnableContainer'在變數和方法上。這只是你問題中的一個錯字嗎? – merv

+0

沒有錯字,就是這麼簡單:)我想我上次使用hostComponent我手工編碼它...爲什麼Flash Builder不添加自定義hostComponent我想知道?是否有任何使用「[HostComponent(」spark.components.SkinnableContainer「)]」?感謝您的回答,請將其添加,我會接受! :) – DominicM

回答

1

爲了使Flash Builder能夠爲您提供代碼提示,以便爲公共方法和屬性一個自定義組件,自定義組件需要在皮膚內的HostComponent metadata directive中指定。目前,您提供的皮膚代碼有:

[HostComponent("spark.components.SkinnableContainer")] 

嘗試將其更改爲您的自定義組件,例如。 com.mydomain.MyComponent