Private Function 再帰(node As TreeNode) As TreeNode Return If(node?.Parent Is Nothing, node, 再帰(node.Parent)) End Function