electron最小化托盘怎么设置

发布时间:2023-04-18 09:25:36 作者:iii
来源:亿速云 阅读:119

这篇文章主要介绍“electron最小化托盘怎么设置”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“electron最小化托盘怎么设置”文章能帮助大家解决问题。

注意

报错:

Error: Failed to load image from path './assets/json.png'

官网示列代码:

const { app, Menu, Tray } = require('electron')

let tray = null
app.whenReady().then(() => {
  tray = new Tray('/path/to/my/icon')
  const contextMenu = Menu.buildFromTemplate([
    { label: 'Item1', type: 'radio' },
    { label: 'Item2', type: 'radio' },
    { label: 'Item3', type: 'radio', checked: true },
    { label: 'Item4', type: 'radio' }
  ])
  tray.setToolTip('This is my application.')
  tray.setContextMenu(contextMenu)
})

修改后的托盘

我在ready周期中对托盘进行设置,大家可以在网上去下载一些图标,我是在iconfont网站去下载的,尺寸选择的是16;感觉刚刚好。

这儿需要注意一个点:图标路径不能直接写死需要通过path引入;

static指的是 public 文件下的static(将图标放置到该文件夹即可)

app.on('ready', async () => {
  if (isDevelopment && !process.env.IS_TEST) {
    // Install Vue Devtools
    try {
      // await installExtension(VUEJS_DEVTOOLS)
      session.defaultSession.loadExtension(path.resolve(__dirname, "../devTools/chrome"));
    } catch (e) {
      console.error('Vue Devtools failed to install:', e.toString())
    }
  }
  createWindow();

  tray = new Tray(path.join(__static, './static/json.png'))
  const contextMenu = Menu.buildFromTemplate([
    { 
      label: '启动服务器', 
      icon: path.join(__static, './static/start.png'),
      click:()=>{
        win.webContents.send('start-server');
        win.show();
      }
    },
    { 
      label: '退出登录', 
      icon: path.join(__static, './static/quit.png'),
      click:()=>{
        win.close();
      }
    },
  ])
  // 点击图标展示
  tray.on('click',() => {
    win.show();
  });
  // 鼠标放置上去显示的文本
  tray.setToolTip('PDF管理工具');
  tray.setContextMenu(contextMenu);
})

关于“electron最小化托盘怎么设置”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注亿速云行业资讯频道,小编每天都会为大家更新不同的知识点。

推荐阅读:
  1. 基于Vue如何搭建Electron项目
  2. Electron 7.1.10 迷之安装失败

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

electron

上一篇:redis中的数据基础查询命令有哪些

下一篇:.net6如何安装和部署

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》