我试图建立一个简单的应用程序有关闭,最大化和最小化按钮。
应用程序的问题是关闭、最大化和最小化无法正常工作。当单击按钮时,console.log()
功能正常,并显示正确的消息,但是,它没有执行实际的关闭、最大化和最小化操作。
此外,在CSS中,我为标题添加了-webkit-app-region: drag;
,但为选项(即按钮)添加了-webkit-app-region: no-drag;
。
附上截图。
驱动程序index.js的内容为:
const {app, BrowserWindow} = require('electron');
const url = require('url');
let win = null;
function boot() {
win = new BrowserWindow({
width: 640,
height: 480,
frame: false
});
win.loadURL(`file://${__dirname}/index.html`);
win.on('closed', () => {
win = null;
});
}
app.on('ready', boot);
header {
display: flex;
flex-direction: row-reverse;
justify-content: flex-start;
background: #353535;
color: black;
align-self: stretch;
-webkit-app-region: drag;
}
#content {
display: flex;
height: 100vh;
flex-direction: column;
background: black;
align-items: center;
}
.option {
color: white;
padding: 10px 25px;
font-size: 16px;
cursor: pointer;
-webkit-app-region: no-drag;
}
.option:hover {
background: red;
}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Sample App</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="content">
<header>
<div class="option" id="close">X</div>
<div class="option" id="minimize">-</div>
<div class="option" id="maximize">=</div>
</header>
</div>
<script src="js/script.js"></script>
</body>
</html>
此外,script.js的内容为
const {remote} = require('electron');
document.getElementById('close').addEventListener('click', closeWindow);
document.getElementById('minimize').addEventListener('click', minimizeWindow);
document.getElementById('maximize').addEventListener('click', maximizeWindow);
function closeWindow () {
var window = remote.getCurrentWindow();
window.close();
}
function minimizeWindow () {
var window = remote.getCurrentWindow();
window.minimize();
}
function maximizeWindow () {
var window = remote.getCurrentWindow()
window.isMaximized() ? window.unmaximize() : window.maximize();
}
2条答案
按热度按时间wsewodh21#
这可以通过使用getFocusedWindow而不是getCurrentWindow来修复。
在script.js文件中,将函数
closeWindow()
、minimizeWindow()
和maximizeWindow()
更新为:getFocusedWindow()
代替getCurrentWindow()
工作的原因可以由有经验的开发人员来解释。uajslkp62#
如果这对你不起作用:
试试这个: