设置了-webkit-app-region: drag实现拖拽发现双击无法双击最大化。
在background.js中将resizable置为true或者去掉resizable
new BrowserWindow({
width: width,
height: height,
show: false, //先不显示窗口,等窗口准备好了才显示,防止渲染未完成时出现白框
frame: false,
movable: true,
resizable: true,
webPreferences: {
nodeIntegration: true,
webSecurity: false, //是否允许渲染进程访问本地文件
contextIsolation: false //是否隔离渲染进程和主进程
},
// fullscreen: true, //默认全屏
})