CreateLabel Method (GoComment)
Create and initialize the
GoText label for displaying the comment, which normally supports multiple lines and is editable.
If you override this method, you may want the definition to do
some of the things that the standard definition does:
protected virtual GoText CreateLabel() {
GoText l = new GoText();
l.Selectable = false;
l.Multiline = true;
l.Editable = true;
this.Editable = true;
return l;
}