这可能让我不知所措,但是WebContents
如何找到相应的BrowserWindow
?
我能做到的最重要的是
const windows = BrowserWindow.getAllWindows();
const ndx = windows.indexOf(someWebContents);
const window = windows[ndx];
有更简单的方法吗?
答案 0 :(得分:2)
这个BrowserWindow静态方法似乎是最简单的方法:
BrowserWindow.fromWebContents(webContents)
返回BrowserWindow - 拥有给定webContents的窗口。