我说使用Electron并尝试制作最小化和关闭按钮.
的index.html
<button id="minus" onclick="minimize()">minimize</span></button> <button id="close" onclick="close()">close</span></button>
index.js
const remote = require('electron').remote; function minimize(){ var window = remote.getCurrentWindow(); window.minimize(); } function close(){ var window = remote.getCurrentWindow(); window.close(); }
我必须做一些愚蠢的错误或什么,但最小化按钮完美工作,而关闭按钮不工作.
我也试过这里提到的EventListener方法
Atom Electron – Close the window with javascript
并且它工作得很好,但为什么我的功能方法不起作用?