Flex 中要想控制Tree组件内,节点的拖动位置,需要进行如下操作。
1. 要想真正限制树节点拖动位置,使用简单的拖动事件是不行的,需要重写Tree树组件类。
2. 然后重写Tree树组件的:dragDropHandler 方法。
3. 在使用时,使用重写的树组件。
如下是一个实例:
第一步:重写Tree树组件类:
package zwn {
import mx.collections.ICollectionView;
import mx.collections.IViewCursor;
import mx.controls.Tree;
import mx.core.mx_internal;
import mx.events.DragEvent;
import mx.managers.DragManager;
use namespace mx_internal; //命名空间
public class ZwnTree extends Tree {
//_dropData 直接从继承的 Tree类中拿来用的
public function ZwnTree() {
super();
}
/**
* @private
* Returns the stack of parents from a child item.
*/
private function getParentStack(item:Object):Array {
var stack:Array = [];
if (item == null)
return stack;
var parent:* = getParentItem(item);
while (parent) {
stack.push(parent);
parent = getParentItem(parent);
}
return stack;
}
override protected function dragDropHandler(event:DragEvent):void {
// if we're moving to ourselves, we need to treat it specially and check for "parent"
// problems where we could recurse forever.
if (event.dragSource.hasFormat("treeItems")) {
var items:Array = event.dragSource.dataForFormat("treeItems") as Array;
var i:int;
var n:int;
if (event.action == DragManager.MOVE && dragMoveEnabled) {
if (event.dragInitiator == this) {
// If we're dropping onto ourselves or a child of a descendant then dont actually drop
calculateDropIndex(event);
// If we did start this drag op then we need to remove first
var index:int;
var parent:*;
var parentItem:*;
var dropIndex:int = _dropData.index;
// 获得 拖动目标 项的父节点 。 get ancestors of the drop target item
var dropParentStack:Array = getParentStack(_dropData.parent);
dropParentStack.unshift(_dropData.parent); //将父节点添加到数组的开头
n = items.length;
for (i = 0;i < n;i++) {
parent = getParentItem(items[i]); //获得父节点
index = getChildIndexInParent(parent,items[i]); //获得父节点的索引号
//check ancestors of the dropTarget if the item matches, we're invalid
//确定 拖动目标 的父节点
//
var item:* = items[i];
var itemName:String = item.localName().toString(); //
var targetParent:*;
for each (parentItem in dropParentStack) {
//we dont want to drop into one of our own sets of children
// 不能把节点放到自身的子节点下面
if (items[i] === parentItem)
return;
//zwn 上
if (parentItem) {
var targetParentName:String = parentItem.localName().toString();
if (itemName == "section" && targetParentName == "chapter") {
targetParent = parentItem;
break;
}
if (itemName == "chapter" && targetParentName == "content") {
targetParent = parentItem;
break;
}
}
//zwn 下
}
//we remove before we add due to the behavior
//of structures with parent pointers like e4x
if (targetParent) { //zwn
removeChildItem(parent,items[i],index);
//is the removed item before the drop location?
// then we need to shift the dropIndex accordingly
if (parent == _dropData.parent && index < _dropData.index)
dropIndex--;
addChildItem(targetParent,items[i],dropIndex);
}
}
return;
}
}
// If not dropping onto ourselves, then add the
// items here if it's a copy operation.
// If it's a move operation (and not on ourselves), then they
// are added in dragCompleteHandler and are removed from
// the source's dragCompleteHandler. We do both in dragCompleteHandler
// because in order to be re-parented, they must be removed from their
// original source FIRST. This means our code isn't coupled fantastically
// as dragCompleteHandler must get the destination tree and
// cast it to a Tree.
/*
if (event.action == DragManager.COPY) {
if (!dataProvider) {
// Create an empty collection to drop items into.
dataProvider = [];
validateNow();
}
n = items.length;
for (i = 0;i < n;i++) {
var item:Object = copyItemWithUID(items[i]);
addChildItem(_dropData.parent,item,_dropData.index);
}
}
*/
lastDragEvent = null;
}
}
/**
* @private
* Finds the index distance between a parent and child
*/
private function getChildIndexInParent(parent:Object,child:Object):int {
var index:int = 0;
if (!parent) {
var cursor:IViewCursor = ICollectionView(iterator.view).createCursor();
while (!cursor.afterLast) {
if (child === cursor.current)
break;
index++;
cursor.moveNext();
}
} else {
if (parent != null && _dataDescriptor.isBranch(parent,iterator.view) && _dataDescriptor.hasChildren(parent,
iterator.view)) {
var children:ICollectionView = getChildren(parent,iterator.view);
if (children.contains(child)) {
cursor = children.createCursor();
while (!cursor.afterLast) {
if (child === cursor.current)
break;
cursor.moveNext();
index++;
}
} else {
//throw new Error("Parent item does not contain specified child: " + itemToUID(child));
}
}
}
return index;
}
}
}
第二步:使用 ZwnTree 类
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" fontSize="15"
xmlns:zwn="zwn.*">
<mx:Script>
<![CDATA[
import mx.events.DragEvent;
import mx.managers.DragManager;
import mx.core.DragSource;
import mx.events.DragEvent;
private function dropDrag(event:DragEvent):void {
tree.hideDropFeedback(event); //取消默认画线
}
]]>
</mx:Script>
<mx:XMLListCollection id="xmlColl" source="{xmlList}"/>
<mx:XMLList id="xmlList" xmlns="">
<lecture name="潭浩强" sex="男" age="55"
position="教授" isBranch="true"/>
<content name="全局信息" isBranch="true">
<chapter id="01" name="普通Flash" isBranch="true">
<section id="0101" name="Flash1" type="SWF"/>
<section id="0102" name="Flash2" type="SWF"/>
</chapter>
<chapter id="01" name="相册" isBranch="true">
<section id="0104" name="相册1" type="Album"/>
<section id="0104" name="相册2" type="Album"/>
</chapter>
<chapter id="02" name="视频" isBranch="true">
<section id="0201" name="我相信MV" type="FLV"/>
<section id="0202" name="跳伞" type="FLV"/>
</chapter>
<chapter id="03" name="wulei's ex" isBranch="true">
<section id="0301" name="测验1" type="QTI"/>
<section id="0302" name="测验2" type="QTI"/>
</chapter>
<chapter id="04" name="音画同步" isBranch="true">
<section id="0401" name="音画同步01" type="VSync"/>
<section id="0402" name="音画同步04" type="VSync"/>
</chapter>
</content>
</mx:XMLList>
<zwn:ZwnTree id="tree" labelField="@name" width="300"
height="100%" dragEnabled="true" dropEnabled="true"
dragMoveEnabled="true" dragDrop="dropDrag(event);" dataProvider="{xmlColl}"/>
</mx:Application>
说明:源码见附件。
分享到:
相关推荐
Jupyter-Notebook
Jupyter-Notebook
高效甘特图模板下载-精心整理.zip
lstm Summary Framework: z = U>x, x u Uz Criteria for choosing U: • PCA: maximize projected variance • CCA: maximize projected correlation • FDA: maximize projected intraclass variance
OpenGL调试工具,适合图形开发者,包括视频开发,播放器开始以及游戏开发者。
全国行政区划shp最新图.zip
全国研究生招生与在校数据+国家线-最新.zip
Jupyter-Notebook
直播电商交流平台 SSM毕业设计 附带论文 启动教程:https://www.bilibili.com/video/BV1GK1iYyE2B
《林黛玉进贾府》课本剧剧本
2000-2020年沪深A股上市公司融资约束程度SA指数-最新数据发布.zip
PPT模版资料,PPT模版资料
CPA注会考试最新教材资料-最新发布.zip
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。
内容概要:本文提供了一个完整的职工管理系统的C++源代码。通过面向对象的编程方法,实现了包括创建新职工、查询、增加、修改、删除、排序、统计以及存储和恢复职工数据在内的多个基本操作功能。该系统支持不同的用户角色(如管理员与老板),并通过菜单驱动方式让用户方便地进行相关操作。此外,还包括了错误检测机制,确保操作过程中的异常得到及时处理。 适合人群:有一定C++语言基础,特别是面向对象编程经验的程序员;企业管理人员和技术开发人员。 使用场景及目标:适用于中小型企业内部的人力资源管理部门或IT部门,用于维护员工基本信息数据库,提高工作效率。通过本项目的学习可以加深对链表、类和对象的理解。 阅读建议:建议先熟悉C++的基本语法和面向对象概念,再深入学习代码的具体实现细节。对于关键函数,比如exchange、creatilist等,应当重点关注并动手实践以加强理解。
Jupyter-Notebook
考研公共课历年真题集-最新发布.zip
Huawei-HKUST Joint Workshop on Theory for Future Wireless 15-16 September 2022 华为-香港科技大学未来无线理论联合研讨会 Speaker:Jingwen Tong
演出人员与观众疫情信息管理系统 SSM毕业设计 附带论文 启动教程:https://www.bilibili.com/video/BV1GK1iYyE2B
《林黛玉进贾府》课本剧剧本.pdf