返回 DeepSeek-Reasonix
tray_icon_windows.go
根目录 / desktop / tray_icon_windows.go
1 //go:build windows
2
3 package main
4
5 import _ "embed"
6
7 // Windows systray loads icons through LoadImage(IMAGE_ICON), so it needs ICO
8 // bytes rather than the PNG app icon used by macOS/Linux.
9 //
10 //go:embed build/windows/icon.ico
11 var trayIconBytes []byte
12
12 lines GO