You can use the click event of the treeView along with the SelectedNode to tell which node was clicked.
Also available is the AfterSelect event which has a System.Windows.Forms.TreeViewEventArgs class as one of the parameters. The node property of that parameter tells which node was selected. This event will work for the selection of a node with the mouse as well as any other method that will change the selectedNode (arrow keys, code, ...)