Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

select a node in treeview programmatically in windows application

i have load a tree view. i want to Traverse treeview node and expand & select a node. Expand is working fine. but select a node is not working.

private void Traverse(TreeNodeCollection nodes, string findtext) 
        {
          foreach (TreeNode node in nodes) 
            {
                if (node.Text.ToString().Trim() == findtext)
                {
                    node.Expand();
                    node.TreeView.SelectedNode = node.NextNode;                    

                    //tvwStructureTree.SelectedNode = this.tvwStructureTree.Nodes[node.Index];
//Select a node in Treeview tvwStructureTree But not working
                    tvwStructureTree.SelectedNode = node; 
                    node.TreeView.Focus(); 
                }
                Traverse(node.Nodes, findtext); 
            } 

        }

Its in windows application.

like image 873
user990897 Avatar asked Dec 18 '25 10:12

user990897


2 Answers

Not quite sure what's your issue is. TreeView.SelectedNode Property is the correct property.

When you set this property, the specified node is scrolled into view and any parent nodes are expanded so that the specified node is visible.

When the parent node or any ancestor node of the selected node is collapsed either programmatically or through user action, the collapsed node becomes the selected node.

Make sure that the node.TreeView is the correct TreeView instance.

node.TreeView.SelectedNode = node.NextNode;  

TreeView.HideSelection Property is another property that might useful for you.

When this property is set to false, selected nodes in the TreeView control remain highlighted in a different color than the current selection color when the TreeView control loses focus. You can use this property to keep items that are selected by the user visible when the user clicks a different control on the form or moves to a different window.

like image 113
CharithJ Avatar answered Dec 19 '25 23:12

CharithJ


I had a similar issue. My form's ctor is given the test of a node to select.Finding the correct node was not a problem, but the tree didn't show the node as selected, since the tree control didn't have focus. merely had to use Form.ActiveControl = myTreecontrol; before setting myTreecontrol.SelectedNode

like image 23
Geno Carman Avatar answered Dec 19 '25 23:12

Geno Carman



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!