在Electron中显示窗口而不关注焦点?

时间:2017-11-07 14:53:08

标签: electron

我正在尝试在Electron中发布Google Chrome的通知。我已尝试设置focusable: false,但窗口仍然关注window.show()

我还尝试设置show: true并避免调用window.show()但获得相同的效果。

我做了很多研究,但在这方面我找不到任何东西。除了要求开发人员实现这样的功能外,有没有办法做到这一点?谢谢你的任何想法。

1 个答案:

答案 0 :(得分:2)

window.show()将始终关注新窗口,您必须使用window.showInactive()按顺序to open a window that is not focused.