electron点右上角的关闭按钮,怎么实现隐藏到托盘?

发布于 2022-09-04 06:15:42 字数 232 浏览 9 评论 0

托盘已经做好,并且能在显示器的右下角显示,现在就是不知道点击右上角的红色小叉叉,怎么让窗口隐藏?而且要求双击托盘里的图标后,窗口显示出来
图片描述

应该操作的是app呢还是mainWindow呢?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

小忆控 2022-09-11 06:15:42

已实现,使用Electron ipcMain 模块可以做到

单身情人 2022-09-11 06:15:42

求助整个流程是怎么实现的,可以详细讲解下嘛,我只简单实现主页面点击关闭按钮,我的托盘也不知道怎么实现。
app.on('window-all-closed', function(){

// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
    app.quit();
}

});

病毒体 2022-09-11 06:15:42

文档里面有写.

electron/docs/api/browser-window.md

Event: 'close'

Returns:

event Event
Emitted when the window is going to be closed. It's emitted before the beforeunload and unload event of the DOM. Calling event.preventDefault() will cancel the close.

七月上 2022-09-11 06:15:42

我尝试如下可以解决问题:

// let mainWindow: Electron.BrowserWindow;
mainWindow.on("close", (e:Event) => {
    e.preventDefault();
    mainWindow.hide();
    // Dereference the window object, usually you would store windows
    // in an array if your app supports multi windows, this is the time
    // when you should delete the corresponding element.
    // mainWindow = null;
});
// 展示使用 mainWindow.show();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文