在节点选中事件里面写代码,获取当前节点的上一级,将其选中就行。
if (treeView1.SelectedNode != null) { treeView1.SelectedNode.Parent.IsSelected = true; }