猿问

在 Electron 中禁用全屏模式

当我按“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

    }));

}


紫衣仙女
浏览 1062回答 1
1回答

蝴蝶不菲

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        }    });
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答