Flex Skin & Style & ItemRenderer
程序员文章站
2022-07-07 23:15:14
...
[color=red]定义Style的语法[/color]
[quote]<fx:Style>
@namespace_declaration
namespace|Application { style_definition }
</fx:Style>[/quote]
示例代码:
参考链接:
Using local style definitions
http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7e8b.html
[color=red]如何在Skin中访问其对应的host component?[/color]
方法1:通过变量hostComponent
示例代码:
方法2:通过[SkinPart("false")] + 相同ID
示例代码:
Hosted Component:
Skin:
[color=red]如何在ItemRenderer里拿到DataProvider分配的数据?[/color]
通过data变量。
[color=red]为什么给Custom ItemRenderer设置的state没有生效。[/color]
需要override getCurrentRendererState函数。
参考链接:
[url]http://*.com/questions/4557168/spark-list-itemrenderer-focus-defaults-the-currentstate[/url]
[quote]<fx:Style>
@namespace_declaration
namespace|Application { style_definition }
</fx:Style>[/quote]
示例代码:
<fx:Script>
<![CDATA[
[Embed("assets/asterisk_orange.png")]
protected const ICON:Class;
]]>
</fx:Script>
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
s|Button#btn1 {
icon: "assets/asterisk_orange.png";
}
s|Button#btn2 {
icon: Embed("assets/asterisk_orange.png");
}
s|Button#btn3 {
icon: PropertyReference("ICON");
}
</fx:Style>
<s:Button id="btn1" label="Spark Button with dynamic icon" />
<s:Button id="btn2" label="Spark Button with inline embedded icon" />
<s:Button id="btn3" label="Spark Button with metadata [Embed] icon" />
参考链接:
Using local style definitions
http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7e8b.html
[color=red]如何在Skin中访问其对应的host component?[/color]
方法1:通过变量hostComponent
示例代码:
<s:BitmapImage id="icon" horizontalCenter="0" verticalCenter="0"
source="{hostComponent.content}"/>
方法2:通过[SkinPart("false")] + 相同ID
示例代码:
Hosted Component:
[SkinPart("false")]
public var bodyGroup:Group;//变量名必须和Skin中的对应组件的ID相同
Skin:
<s:Group id="bodyGroup" width="160" height="160">
<s:layout>
<lo:FlowLayout horizontalGap="0" verticalGap="0" padding="0"/>
</s:layout>
</s:Group>
[color=red]如何在ItemRenderer里拿到DataProvider分配的数据?[/color]
通过data变量。
[color=red]为什么给Custom ItemRenderer设置的state没有生效。[/color]
需要override getCurrentRendererState函数。
override protected function getCurrentRendererState():String
{
return this.currentState;
}
参考链接:
[url]http://*.com/questions/4557168/spark-list-itemrenderer-focus-defaults-the-currentstate[/url]
推荐阅读
-
Flex Skin & Style & ItemRenderer
-
Flex中List自己定义itemrenderer渲染问题的解决
-
Flex的itemRenderer属性使用例子
-
flex itemRenderer使用(五):效率
-
flex itemRenderer使用
-
Flex的一点入门经验(2)--itemRenderer的使用
-
Flex的ItemRenderer
-
理解 Flex itemRenderer - 第 1 部分: 内联渲染器
-
Flex4 使用itemRenderer 为Tree加线具体实现
-
Flex组件的项目渲染器(ItemRenderer)使用教程 flexItemRenderer使用教程