0

我创建了一个名为 HTMLBtnBlue.mxml 的按钮皮肤,我用 HTMLBtnBlue.mxml 的副本创建了另一个皮肤,并将其命名为 HTMLBtnYellow,并将颜色更改为 0xF8C313。HTMLBtn.mxml 的代码如下

<?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:mx="library://ns.adobe.com/flex/halo">

<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/halo";

.upStyle {
    color:      #FF0000;
}

.overStyle {
    color:      #009900;
}

.downStyle {
    color:      #00FF00;
}

.disabledStyle {
    color:      #666666;
}

</fx:Style>

<s:states>
    <s:State name="up" />
    <s:State name="over" />
    <s:State name="down" />
    <s:State name="disabled" />
</s:states>

<s:Label
    id="labelDisplay"
    styleName.up="upStyle"
    styleName.over="overStyle"
    styleName.down="downStyle"
    styleName.disabled="disabledStyle"/>

<s:Rect width="100%" height="1" includeIn="over,up" bottom="0">
    <s:fill>
        <s:SolidColor color.over="#009900" color.up="#0000FF"/>
    </s:fill>
</s:Rect>

</s:Skin>

按钮的代码如下

<s:Button label="Open Menu" id="bluebtn" skinClass="skins.HTMLBtn" />   
<s:Button label="Close Menu" id="yellowbtn" skinClass="skins.YellowSkin" />

但它将 HTMLBtn 皮肤应用于打开菜单和关闭菜单按钮。

4

1 回答 1

0

按照上面在 Flash Builder 4.6 和 AIR 3.4 中的示例:

    <s:Button id="bluebtn" label="Open Menu" skinClass="skins.HTMLBtnBlue"/>
<s:Button id="yellowbtn" label="Close Menu"  skinClass="skins.HTMLBtnYellow"/>

我对此没有任何问题。

   Skin Class "HTMLBtnYellow":

  <?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:mx="library://ns.adobe.com/flex/halo">

<fx:Style>
    @namespace s "library://ns.adobe.com/flex/spark";
    @namespace mx "library://ns.adobe.com/flex/halo";

    .upStyle {
        color:      #FF0000;
    }

    .overStyle {
        color:      #009900;
    }

    .downStyle {
        color:      #00FF00;
    }

    .disabledStyle {
        color:      #666666;
    }

</fx:Style>

<s:states>
    <s:State name="up" />
    <s:State name="over" />
    <s:State name="down" />
    <s:State name="disabled" />
</s:states>


<s:Rect width="100%" height="1" includeIn="over,up" bottom="0">
    <s:fill>
        <s:SolidColor color.over="#009900" color.up="#F8C313"/>
    </s:fill>
</s:Rect>

<s:Label
    id="labelDisplay"
    styleName.up="upStyle"
    styleName.over="overStyle"
    styleName.down="downStyle"
    styleName.disabled="disabledStyle"/>

皮肤类“HTMLBtnBlue”:

   <?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:mx="library://ns.adobe.com/flex/halo">

<fx:Style>
    @namespace s "library://ns.adobe.com/flex/spark";
    @namespace mx "library://ns.adobe.com/flex/halo";

    .upStyle {
        color:      #FF0000;
    }

    .overStyle {
        color:      #009900;
    }

    .downStyle {
        color:      #00FF00;
    }

    .disabledStyle {
        color:      #666666;
    }

</fx:Style>

<s:states>
    <s:State name="up" />
    <s:State name="over" />
    <s:State name="down" />
    <s:State name="disabled" />
</s:states>

<s:Label
    id="labelDisplay"
    styleName.up="upStyle"
    styleName.over="overStyle"
    styleName.down="downStyle"
    styleName.disabled="disabledStyle"/>

<s:Rect width="100%" height="1" includeIn="over,up" bottom="0">
    <s:fill>
        <s:SolidColor color.over="#009900" color.up="#0000FF"/>
    </s:fill>
</s:Rect>

于 2013-05-07T23:43:22.530 回答