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.
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.
| show 4 more comments |
|
You'll have to turn the LabelEdit property on and off as needed:
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. |
|||
|
|
|
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:
|
|||
|
|
LabelEditoff. 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 whenLabelEditis off. – Cody Gray Feb 6 '11 at 11:38