一旦用户将鼠标悬停在窗口上,我就会调用一个函数。是否可以改变窗户的宽度?这是我的功能:
function resize() {
console.log('resize');
}
答案 0 :(得分:7)
是的,可以访问渲染器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}