GoComment Click behavior

Hello,

the GoComment enters editMode by SingleClick on the GoText part of it.
This behavior is not windows standard. I want on the single click just to select the GoComment and the edit mode by doubleclick. I tried different ways but without success (e.g. overriding singleclick event, doesnt work because the event doesnt fire by clicking on the GoText part of the GoComment…and so on)

Can you give me a hint?

bye
Steve

You can turn off having a single click start in-place editing by:

comment.Label.Editable = false;
You can implement double-click behavior on the node to start editing the text by adding this override:
public override bool OnDoubleClick(GoInputEventArgs evt, GoView view) {
this.Label.DoBeginEdit(view);
return true;
}
Please read http://www.nwoods.com/forum/forum_posts.asp?TID=1781 as well.

Perfect! Thanks a lot.
Steve.