Hey there gurus!!; )

I have my made my treeview like this.


Treeview and then i have 2 textboxes.

First textsbox is the parent:
TreeNode tr = new TreeNode(textBox1.Text);
treeView1.Nodes.Add(tr);

Which reads the textbox1.

Then i have a Child:
TreeNode tr2 = new TreeNode(textBox2.Text);
TreeNode tr3 = new TreeNode();
tr3 = treeView1.SelectedNode:
tr3.Nodes.Add(tr2);

I want the selected node to be textbox1.text?

How do i do this?

Thank you for helping me, i appriciate that!