怎么循环遍历TreeView的子节点获取子节点的值

怎么获得市财政局的值?麻烦大家帮帮忙急需!!!... 怎么获得市财政局的值?麻烦大家帮帮忙 急需!!! 展开
 我来答
万斛山语
推荐于2016-09-07 · TA获得超过573个赞
知道小有建树答主
回答量:561
采纳率:55%
帮助的人:110万
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace SuijiNumber
{
class Program
{
static void Main(string[] args)
{

string searchKey = "财政局";
TreeNode parentNode = null; // 注意要设置该值,使其不能为空,一般为一棵树的根结点。
TreeNode node = BianLi(parentNode, searchKey);
if (node != null)
{
// 则找到
}

}

static TreeNode BianLi(TreeNode parentNode,string searchKey)
{
foreach (TreeNode node in parentNode.Nodes)
{
if (node.Text == searchKey)
{
return node;
}
else if (node.Nodes.Count >1)
{
for (int i = 0; i < node.Nodes.Count; i++)
{
BianLi(node.Nodes[i], searchKey);
}
}
}

return null;
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
fewind1990
2011-06-23 · TA获得超过347个赞
知道小有建树答主
回答量:478
采纳率:0%
帮助的人:233万
展开全部
foreach(treenode node in treeview.nodes)
{
if(node.text=="你想要的值")
{}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友e631bfe5f3
2011-07-02 · TA获得超过145个赞
知道小有建树答主
回答量:256
采纳率:0%
帮助的人:163万
展开全部
要详细点
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式