我试图隐藏我的主窗口,以便我以后再加载。 我得到了以下代码:
function createWindow () {
// Create the browser window.
win = new BrowserWindow({width: 800, height: 600})
// Emitted when the window is closed.
win.on('closed', (event) => {
//win = null
console.log(event);
event.preventDefault();
win.hide();
})
}
有人能帮助我吗?第37行是win.hide()
的行谢谢!