列兵
UID2966833
U币1
G币20
技术0
主题0
精华0
阅读权限10
注册时间2017-10-8
最后登录2019-6-6
在线时间1 小时
列兵
|
ProcessTree.InsertNode(Root_Node1, null, null, Tree.NodeInsertOption.AlwaysFirst);//插入节点
Node Parent_Node1 = ProcessTree.CreateNode("划线");//创建节点
ProcessTree.InsertNode(Parent_Node1, Root_Node1, null, Tree.NodeInsertOption.AlwaysFirst);//插入节点
Node Parent_Node2 = ProcessTree.CreateNode("NC3*10");//创建节点
ProcessTree.InsertNode(Parent_Node2, Root_Node1, Parent_Node1, Tree.NodeInsertOption.Sort);//插入节点
Node Parent_Node3 = ProcessTree.CreateNode("锯床");//创建节点
ProcessTree.InsertNode(Parent_Node3, Root_Node1, Parent_Node2, Tree.NodeInsertOption.Sort);//插入节点
Node Parent_Node4 = ProcessTree.CreateNode("热处理");//创建节点
ProcessTree.InsertNode(Parent_Node4, Root_Node1, Parent_Node3, Tree.NodeInsertOption.Sort);//插入节点
Node Parent_Node5 = ProcessTree.CreateNode("喷丸");//创建节点
为什么按照这个代码进行排序后实际效果又乱了? |
|