I want to add nodes that behave in a similar fashion as when you add new folders in windows explorer. i.e. right click > new folder > then the new folder is added and highlighted as New Folder so that as soon as the user types they are overwriting the folder name.

I can add a new node as a child node of the node I have selected and label it "New Node" but I can't figure out how to select the new node and have it highlighted so that when the user types, they are overwriting the "New Node" text.

I have tried this but it doesn't work.
Code:
Private Sub AddProjectToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AddProjectToolStripMenuItem.Click
        Me.trvProjects.SelectedNode.Nodes.Add("New Node")
        Me.trvProjects.SelectedNode = trvProjects.Nodes("New Node")
        Me.trvProjects.Focus()
    End Sub