//添加根节点 var d1 = tv.Nodes.Add("全部");//把内容作为根节点添加 //添加子节点 TreeNode tnn = new TreeNode(); tnn.Tag = "123"; tnn.Text = "11212312"; d1.Nodes.Add(tnn);