energy/cef/cef-window-component_windows.go
2022-10-04 16:38:43 +08:00

21 lines
529 B
Go

//----------------------------------------
//
// Copyright © yanghy. All Rights Reserved.
//
// Licensed under GNU General Public License v3.0
//
//----------------------------------------
//go:build windows
// +build windows
package cef
//只适用于windows的无菜单托盘
func (m *TCefWindowInfo) NewCefTray(width, height int32, url string) ITray {
if BrowserWindow.browserWindow.tray == nil {
BrowserWindow.browserWindow.tray = newCefTray(m.Window, width, height, url)
}
return BrowserWindow.browserWindow.tray
}