我是2.0超级菜鸟,请多多教导!
string txt=""; //全局
GetPath(TreeView1.SelectedNode.Text, TreeView1.SelectedNode);
this.Label3.Text = txt
protected string GetPath(string lText, TreeNode tn)
{
if (tn.Text != "东建集团公司")
{
txt= tn.Parent.Text + "/" + lText;
GetPath(txt, tn.Parent);
}
}
this.Label3.Text = GetPath(TreeView1.SelectedNode.Text, TreeView1.SelectedNode);
protected string GetPath(string lText, TreeNode tn)
{
if (tn.Text != "东建集团公司")
{
lText = tn.Parent.Text + "/" + lText;
return GetPath(lText, tn.Parent);
}
}