主頁(yè) > 知識(shí)庫(kù) > Flex 改變樹(shù)結(jié)點(diǎn)圖標(biāo)的2種方法介紹

Flex 改變樹(shù)結(jié)點(diǎn)圖標(biāo)的2種方法介紹

熱門(mén)標(biāo)簽:車載電話機(jī)器人 無(wú)錫電銷外呼系統(tǒng)代理 中山外呼系統(tǒng)中間件 什么行業(yè)需要電話機(jī)器人 天津企業(yè)外呼系統(tǒng)代理商 廣州ai外呼系統(tǒng)業(yè)務(wù) 外呼系統(tǒng)號(hào)碼顯示 南昌crm外呼系統(tǒng)如何 地圖標(biāo)注多家店
方法一:根據(jù)是否有子結(jié)點(diǎn)進(jìn)行改變
復(fù)制代碼 代碼如下:

fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
mx|Tree{
/*去掉默認(rèn)文件夾圖標(biāo)*/
folderClosedIcon: Embed(source='resource/region.png');
folderOpenIcon: Embed(source='resource/region.png');
/*去掉葉子節(jié)點(diǎn)圖標(biāo)
defaultLeafIcon: ClassReference(null);
*/
/*
defaultLeafIcon 指定葉圖標(biāo)
disclosureClosedIcon 指定的圖標(biāo)旁邊顯示一個(gè)封閉的分支節(jié)點(diǎn)。默認(rèn)的圖標(biāo)是一個(gè)黑色三角形。
disclosureOpenIcon 指定的圖標(biāo)旁邊顯示一個(gè)開(kāi)放的分支節(jié)點(diǎn)。默認(rèn)的圖標(biāo)是一個(gè)黑色三角形。
folderClosedIcon 關(guān)閉指定的文件夾圖標(biāo)的一個(gè)分支節(jié)點(diǎn)。
folderOpenIcon 指定打開(kāi)的文件夾圖標(biāo)的一個(gè)分支節(jié)點(diǎn)。
例:三角圖標(biāo)修改如下代碼使用即可換成自己的了:
disclosureOpenIcon:Embed(source='resource/region.png');
disclosureClosedIcon:Embed(source='resource/region.png');
*/
}
/fx:Style>

方法二:根據(jù)結(jié)點(diǎn)的屬性,靈活改變圖標(biāo)
復(fù)制代碼 代碼如下:

?xml version="1.0" encoding="utf-8"?>
s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
fx:Script>
![CDATA[
]]>
/fx:Script>
fx:Declarations>
!-- 將非可視元素(例如服務(wù)、值對(duì)象)放在此處 -->
fx:XML id="treeData">
root>
node label="CI配置項(xiàng)" iconName="computer.png">
node label="資源" iconName="computer.png">
node label="硬件資源" iconName="computer.png">
node label="硬件設(shè)備" iconName="computer.png">
/node>
node label="硬件模塊" iconName="computer.png">
node label="端口" iconName="computer.png">
/node>
/node>
/node>
/node>
/node>
node label="字典" iconName="dictionary.png">
/node>
/root>
/fx:XML>
/fx:Declarations>
mx:Tree left="5" top="5" bottom="5" width="150" dataProvider="{treeData}"
id="myTree"
showRoot="false"
labelField="@label"
itemRenderer="com.flex.tree.dynamicicontree.IconTreeRenderer">
/mx:Tree>
/s:Application>
package com.flex.tree.dynamicicontree
{
import flash.xml.*;
import mx.collections.*;
import mx.controls.Image;
import mx.controls.listClasses.*;
import mx.controls.treeClasses.*;
import mx.styles.StyleManager;
/*
* ICON Tree的渲染器
*/
public class IconTreeRenderer extends TreeItemRenderer
{
protected var myImage:ImageRenderer;
private var imageWidth:Number = 16;
private var imageHeight:Number = 16;
private static var defaultImg:String = "windows.png";
public function IconTreeRenderer ()
{
super();
}
override protected function createChildren():void
{
super.createChildren();
myImage = new ImageRenderer();
myImage.source = defaultImg;
myImage.width=imageWidth;
myImage.height=imageHeight;
myImage.setStyle( "verticalAlign", "middle" );
addChild(myImage);
}
//通過(guò)覆蓋data方法來(lái)動(dòng)態(tài)設(shè)置tree的節(jié)點(diǎn)圖標(biāo)
override public function set data(value:Object):void
{
super.data = value;
var imageSource:String=value.@iconName.toString();
if(imageSource!="")
{
myImage.source=imageSource;
}else{
myImage.source=defaultImg;
}
}
//隱藏原有圖標(biāo),并設(shè)置它的坐標(biāo)
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
{
super.updateDisplayList(unscaledWidth, unscaledHeight);
if(super.data !=null)
{
if (super.icon != null)
{
myImage.x = super.icon.x;
myImage.y = 2;
super.icon.visible=false;
}
else
{
myImage.x = super.label.x;
myImage.y = 2;
super.label.x = myImage.x + myImage.width + 17;
}
}
}
}
}
package com.flex.tree.dynamicicontree
{
import mx.controls.Image;
public class ImageRenderer extends Image
{
private var defaultURL:String = "assets/icon/";
public var iconName:String;
public function ImageRenderer()
{
super();
}
override public function set source(url:Object):void{
super.source = defaultURL + url;
iconName = url as String;
}
}
}

標(biāo)簽:呂梁 泰州 攀枝花 欽州 滄州 佛山 海西 仙桃

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Flex 改變樹(shù)結(jié)點(diǎn)圖標(biāo)的2種方法介紹》,本文關(guān)鍵詞  Flex,改變,樹(shù),結(jié)點(diǎn),圖,標(biāo)的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Flex 改變樹(shù)結(jié)點(diǎn)圖標(biāo)的2種方法介紹》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Flex 改變樹(shù)結(jié)點(diǎn)圖標(biāo)的2種方法介紹的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章