SetTitle sets the Window's title to title.
(title string)
| 56 | |
| 57 | // SetTitle sets the Window's title to title. |
| 58 | func (w *Window) SetTitle(title string) { |
| 59 | ctitle := C.CString(title) |
| 60 | C.uiWindowSetTitle(w.w, ctitle) |
| 61 | freestr(ctitle) |
| 62 | } |
| 63 | |
| 64 | // TODO ContentSize |
| 65 | // TODO SetContentSize |