mirror of
https://gitee.com/energye/energy.git
synced 2024-11-30 18:57:39 +08:00
21 lines
529 B
Go
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
|
|
}
|