0

我想在 flex 4.6 中从样式表设置图像源。

例如,

<s:Image styleName="imgDelete" />

源代码将在 CSS 中给出...

我怎样才能做到这一点 ???

4

1 回答 1

1

取自:How to set an image's source in a Flex stylesheet (not Embed)

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:s="library://ns.adobe.com/flex/spark"
minWidth="636" minHeight="389" width="636" height="389"
>

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

    s|Application {
        image-source: Embed(source="done.png");
    }

</fx:Style>
<mx:Image source="{getStyle('imageSource')}" >
</mx:Image>
</s:Application>
于 2012-05-14T11:31:27.200 回答