new-gui/label.go

16 lines
270 B
Go

package gui
import (
"go.wit.com/gui/widget"
)
func (parent *Node) NewLabel(text string) *Node {
newNode := parent.newNode(text, widget.Label)
newNode.value = text
newNode.progname = text
// inform the toolkits
sendAction(newNode, widget.Add)
return newNode
}