gpt4 book ai didi

electron - 如何从 webview 本身更改屏幕大小?

转载 作者:行者123 更新时间:2023-12-01 09:22:15 26 4
gpt4 key购买 nike

我有一个函数,一旦用户悬停窗口就会被调用。是否可以更改窗口的宽度?这是我的功能:

function resize() {
console.log('resize');
}

最佳答案

是的,可以访问渲染器 BrowserWindow API。只需包含远程模块并获取当前窗口,这将允许您在主进程中执行所有操作。

示例:

let { remote } = require('electron')
let win = remote.getCurrentWindow()


// Access to the renderers BrowserWindow API
win.setBounds({
width: 1000
})


win.getBounds()
// Object {x: 240, y: 192, width: 800, height: 600}

引用:BrowserWindow API documentation

关于electron - 如何从 webview 本身更改屏幕大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31261760/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com