Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to disable the option to get into "Rename" mode when clicking on a tree-node?
I don't want to disable renaming completely, only to not allow doing it by clicking on the node.

share|improve this question
1  
Are you talking about setting LabelEdit property to false? – Anuraj Feb 6 '11 at 11:10
no, doing that will disable renaming completely. I don't want to do that. – la la lu Feb 6 '11 at 11:13
1  
What TreeView are we talking about? WPF? WinForms? – Henk Holterman Feb 6 '11 at 11:13
3  
This sounds like an excellent idea. I mean, it would just be too easy to let users have UI idioms that they know and expect. It keeps them on their toes, keeps them keen. – David Heffernan Feb 6 '11 at 11:29
1  
So turn LabelEdit off. Present an alternate UI for changing the name (such as a dialog containing a textbox that they can type the new name into) when they press F2 or select an item from a context menu. You can still change the name of the node programmatically when LabelEdit is off. – Cody Gray Feb 6 '11 at 11:38
show 4 more comments

2 Answers

up vote 3 down vote accepted

You'll have to turn the LabelEdit property on and off as needed:

    private void startLabelEdit() {
        treeView1.LabelEdit = true;
        treeView1.SelectedNode.BeginEdit();
    }

    private void treeView1_AfterLabelEdit(object sender, NodeLabelEditEventArgs e) {
        treeView1.LabelEdit = false;
    }

Beware that this has side effects, the LabelEdit property is a style flag for the native Windows control. Changing it requires completely destroying the window and re-creating it from scratch. The most visible side-effect is a small flicker when the window redraws itself after getting created. There could be other ones, I didn't see anything go wrong myself.

share|improve this answer

I don't know why would you change the default behavior, but anyway here's a possible solution to edit the nodes with LabelEdit set to true.

Just catch BeforeLabelEdit event and cancel it, unless your specific action occurred. The following code does this for F2 key press:

        bool _allowNodeRenaming;

        private void treeView1_BeforeLabelEdit(object sender, NodeLabelEditEventArgs e)
        {
            if (!_allowNodeRenaming)
            {
                e.CancelEdit = true;
            }

            _allowNodeRenaming = false;
        }

        private void treeView1_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.F2)
            {
                _allowNodeRenaming = true;
                treeView1.SelectedNode.BeginEdit();
            }
        }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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