Hello.
I have WinTree with possibility to edit nodes. I am using the following way:
tree.Override.Editor = new EditorWithText();
Everything seems OK, but after entering edit mode I want to update toolbar and disable some button. AfterCellEnterEditMode seems to be exactly the event I would like to catch, but it does not work. I put the breakpoint in the handler, but it never stops there. What I am doing wrong?
Thank you.
My guess is that your tree is in Standard ViewStyle and not Grid style. Therefore the tree isn't using Cells. If I am right, then the event you want is BeforeLabelEdit.
You are right about ViewStyle.
Thank you