为了账号安全,请及时绑定邮箱和手机立即绑定

在 Electron 中禁用全屏模式

在 Electron 中禁用全屏模式

紫衣仙女 2022-07-21 10:17:09
当我按“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

        }

    });


查看完整回答
反对 回复 2022-07-21
  • 1 回答
  • 0 关注
  • 1060 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信