Private Sub TreeView1_MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles TreeView1.MouseDown
If e.Button = Windows.Forms.MouseButtons.Right Then
Dim o_pot节点坐标 As New Point(e.X, e.Y)
If Not TreeView1.GetNodeAt(o_pot节点坐标) Is Nothing Then MessageBox.Show(TreeView1.GetNodeAt(o_pot节点坐标).Text)
Else
End If
End Sub