当我按“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
}));
}
蝴蝶不菲
相关分类