本文介绍了计算树视图中的所有节点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

此代码仅计算树视图中的父节点或根节点,

如何计算树视图中的所有节点?


//一个方式

int NodeCounter = 0;

foreach(TreeView1.Nodes中的TreeNode currentNode)

NodeCounter ++;


//其他方式

int total = TreeView1.Nodes.Count;

解决方案




所以,计算所有节点不仅仅是树节点...我不明白...... *因为

总是*


// CY




This code only counts the parent nodes or rootnodes in a treeview,
how do you count all the nodes in a treeview?

// one way
int NodeCounter = 0;
foreach (TreeNode currentNode in TreeView1.Nodes)
NodeCounter++;

// other way
int total = TreeView1.Nodes.Count;


解决方案


so, count all nodes not just tree nodes... I dont get it... *as
always*

//CY




这篇关于计算树视图中的所有节点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 08:14