当我按“f11”时,应用程序将以全屏模式出现。如何禁用此选项?function createWindow() { window = new BrowserWindow({ width:610, height:679, icon: path.join(__dirname, APP_DIR, IMG_DIR, 'icon.png'), frame: false, resizable: false, webPreferences: { nodeIntegration: true } }); window.loadURL(url.format({ pathname: path.join(__dirname, APP_DIR, 'index.html'), protocol: 'file:', slashes: true }));}
1 回答
蝴蝶不菲
TA贡献1810条经验 获得超4个赞
fullscreenableBoolean (optional) - 窗口是否可以进入全屏模式。在 macOS 上,最大化/缩放按钮是否应该切换全屏模式或最大化窗口。默认为真。
window = new BrowserWindow({
width:610,
height:679,
icon: path.join(__dirname, APP_DIR, IMG_DIR, 'icon.png'),
frame: false,
fullscreenable: false,
webPreferences: {
nodeIntegration: true
}
});
添加回答
举报
0/150
提交
取消