예제 #1
0
파일: window.go 프로젝트: nelsam/gxui
func (w *Window) Paint(c gxui.Canvas) {
	w.PaintBackground(c, c.Size().Rect())
	w.PaintChildren.Paint(c)
	w.PaintBorder(c, c.Size().Rect())
}