我有一个 NWJS 应用程序,它应该在系统托盘中运行,并且仅在用户请求时才显示主窗口。到目前为止,我有这个代码来实现它:
包.json:
{
"name": "helloworld",
"bg-script": "bg.js",
"main": "index.html"
}
在我的 index.html 中:
var win = nw.Window.get();
win.hide();
bg.js:
var tray = new nw.Tray({ icon: 'icon.png' });
var gui = require('nw.gui');
var menu = new nw.Menu();
menu.append(new nw.MenuItem({
label: 'Quit',
click() {
gui.App.closeAllWindows();
}
}));
tray.menu = menu;
唯一的问题是窗口在消失之前会短暂闪烁。是否可以确保它以隐藏状态开始,而不是像我一样手动隐藏它?