博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Alternating row colors in a Flex Tree control using the alternatingItemColors style
阅读量:6279 次
发布时间:2019-06-22

本文共 1046 字,大约阅读时间需要 3 分钟。

The following example shows how you can alternate item colors in a Flex Tree control by setting the 
alternatingItemColors
 style to an array of colors

<?
xml version="1.0" encoding="utf-8"
?>
<!--
 http://blog.flexexamples.com/2007/11/27/alternating-row-colors-in-a-flex-tree-control-using-the-alternatingitemcolors-style/ 
-->
<
mx:Application 
xmlns:mx
="http://www.adobe.com/2006/mxml"
        layout
="vertical"
        verticalAlign
="middle"
        backgroundColor
="white"
>
    
<
mx:XMLListCollection 
id
="xmlListColl"
>
        
<
mx:source
>
            
<
mx:XMLList
>
                
<
node 
label
="One"
>
                    
<
node 
label
="One.1"
 
/>
                    
<
node 
label
="One.2"
 
/>
                    
<
node 
label
="One.3"
 
/>
                
</
node
>
                
<
node 
label
="Two"
>
                    
<
node 
label
="Two.1"
 
/>
                    
<
node 
label
="Two.2"
 
/>
                    
<
node 
label
="Two.3"
 
/>
                
</
node
>
            
</
mx:XMLList
>
        
</
mx:source
>
    
</
mx:XMLListCollection
>
    
<
mx:Tree 
id
="tree"
            dataProvider
="{xmlListColl}"
            labelField
="@label"
            alternatingItemColors
="[#DFDFDF,#EEEEEE]"
            rowCount
="4"
            width
="300"
 
/>
    本文转自 OldHawk  博客园博客,原文链接:http://www.cnblogs.com/taobataoma/archive/2008/01/11/1034846.html
,如需转载请自行联系原作者
你可能感兴趣的文章
弗洛伊德算法
查看>>
【算法之美】求解两个有序数组的中位数 — leetcode 4. Median of Two Sorted Arrays
查看>>
精度 Precision
查看>>
Android——4.2 - 3G移植之路之 APN (五)
查看>>
Linux_DHCP服务搭建
查看>>
[SilverLight]DataGrid实现批量输入(like Excel)(补充)
查看>>
秋式广告杀手:广告拦截原理与杀手组织
查看>>
翻译 | 摆脱浏览器限制的JavaScript
查看>>
闲扯下午引爆乌云社区“盗窃”乌云币事件
查看>>
02@在类的头文件中尽量少引入其他头文件
查看>>
JAVA IO BIO NIO AIO
查看>>
input checkbox 复选框大小修改
查看>>
网吧维护工具
查看>>
BOOT.INI文件参数
查看>>
vmstat详解
查看>>
新年第一镖
查看>>
unbtu使用笔记
查看>>
OEA 中 WPF 树型表格虚拟化设计方案
查看>>
Android程序开发初级教程(一) 开始 Hello Android
查看>>
使用Gradle打RPM包
查看>>