vote up 0 vote down star

i havve one treeview and 2 buutten i want when click on UP_buutten, above Node selected

flag

13% accept rate
does your treeview connect to database? – Wael Dalloul Aug 25 at 9:24

4 Answers

vote up 0 vote down

my problem solved thanx for answers

private void button1_Click(object sender, EventArgs e) { TreeNode node = new TreeNode();

                 node = treeView1.SelectedNode;
                 treeView1.SelectedNode = node.NextVisibleNode;
                 node.TreeView.Focus();


         }
link|flag
Great, but how about accepting one of the answers as accepted solution? – Thorsten Dittmar Aug 25 at 10:09
i give soulation of your first answer thanx thorsten-dittmar – Mary Aug 25 at 10:38
vote up 0 vote down

try this for UP:

    private void btnUP_Click(object sender, EventArgs e)
    {
        var tn = tv.SelectedNode;
        if(tn==null) return;

        var idx = tn.Index;
        txt.Text = "Node: " + idx;

        var par = tn.Parent;

        if(par==null) return;

        par.Nodes.Remove(tn);

        if (idx > 0)
        {
            par.Nodes.Insert(tn.Index - 1, tn);
            return;
        }

        //if you want to move int its parent's parent [grand parent :) ]
        if (par.Parent!=null)
            par.Parent.Nodes.Add(tn);
    }
link|flag
vote up 0 vote down

There are some nice built in properties of the node that you can use, so for up you would use:

TreeView.SelectedNode = TreeView.SelectedNode.PrevNode;

and for down:

TreeView.SelectedNode = TreeView.SelectedNode.NextNode;
link|flag
thanx for answer i solve my problem with private void button1_Click(object sender, EventArgs e) { TreeNode node = new TreeNode(); node = treeView1.SelectedNode; treeView1.SelectedNode = node.NextVisibleNode; node.TreeView.Focus(); } – Mary Aug 25 at 9:57
vote up 0 vote down

From MSDN Documentation:

private void SelectNode(TreeNode node)
{
    if(node.IsSelected)
    {
        // Determine which TreeNode to select.
        switch(myComboBox.Text)
        {
            case "Previous":
                node.TreeView.SelectedNode = node.PrevNode;
                break;
            case "PreviousVisible":
                node.TreeView.SelectedNode = node.PrevVisibleNode;
                break;
            case "Next":
                node.TreeView.SelectedNode = node.NextNode;
                break;
            case "NextVisible":
                node.TreeView.SelectedNode = node.NextVisibleNode;
                break;
            case "First":
                node.TreeView.SelectedNode = node.FirstNode;
                break;
            case "Last":
                node.TreeView.SelectedNode = node.LastNode;
                break;
        }
    }
    node.TreeView.Focus();
}

EDIT
You'd of course use the cases for "Previous" and "Next" or "PreviousVisible" and "NextVisible" in your button click handlers. This code assumes that you select the "action" from a combo box and push a button.

EDIT 2
Just in case you are trying to move the nodes up and down (not the selection), you can use something like the following:

TreeNode sourceNode = treeView.SelectedNode;

if (sourceNode.Parent == null)
{
    return;
}

treeView.Nodes.Remove(sourceNode);
treeView.Nodes.Insert(sourceNode.Index + 1, sourceNode);

This would move the current node one down. Please note that you have to write some more code to handle some special cases (e.g. what happens with the first node? Does it work on all levels of the tree?), but basically that's what I'd try.

link|flag
he don't want selecting, he wants to move the nodes to up and down!. – Wael Dalloul Aug 25 at 9:26
No, he/she says: "click on UP_buutten, above Node selected". If he/she wants to move the nodes then the question should be rephrased. – Thorsten Dittmar Aug 25 at 9:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.