how to insert a new node in a tree view programatically?
C#
2
Posts
2
Posters
0
Views
1
Watching
-
i have textbox in which i can fill the values which should be updated into the treenode...?
Simple example:
string someText = yourTextBox.Text;
TreeNode aNode = new TreeNode();
aNode.Name = "some name here";
aNode.Text = someText;
yourTreeCtrl.Nodes.Add(aNode);You could get more browsing the MSDN articles[^], couldn't you? ;)
SkyWalker