CreateLabel Method (GoButton)
protected virtual GoText CreateLabel()
Return Value
By default this returns an empty
GoText object
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;
return l;
}