コード例 #1
0
ファイル: icon.go プロジェクト: wangch/walk
// Dispose releases the operating system resources associated with the Icon.
func (i *Icon) Dispose() {
	if i.isStock || i.hIcon == 0 {
		return
	}

	win.DestroyIcon(i.hIcon)
	i.hIcon = 0
}
コード例 #2
0
ファイル: cursor.go プロジェクト: wangch/walk
func (cc customCursor) Dispose() {
	win.DestroyIcon(win.HICON(cc.hCursor))
}