energy/example/dev-test/traydemo/tray-demo_other.go
2023-01-28 18:18:51 +08:00

27 lines
501 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//go:build !windows
// +build !windows
package traydemo
import (
"github.com/energye/energy/cef"
)
// 仅适用windows
//
// LCL + [CEF] 托盘 只适用 windows 基于html 和 ipc 实现功能
//
//推荐在windows或macosx中使用
func LCLCefTrayDemo(browserWindow cef.IBrowserWindow) {
}
// 仅适用windows
//
// LCL + [VF] 托盘 只适用 windows 基于html 和 ipc 实现功能
//
// VF组件托盘无法使用LCL相关组件
func LCLVFTrayDemo(browserWindow cef.IBrowserWindow) {
}