我声明使用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 它完美无缺,但为什么我的函数方法不起作用?