Example #1
0
func (w *Window) Hide() {
	w32.ShowWindow(w.handle, w32.SW_HIDE)
}
Example #2
0
func (w *Window) Restore() {
	w32.ShowWindow(w.handle, w32.SW_RESTORE)
}
Example #3
0
func (w *Window) Show() {
	w32.ShowWindow(w.handle, w32.SW_SHOW)
}