您好,登錄后才能下訂單哦!
這篇文章主要介紹“electron最小化托盤怎么設置”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“electron最小化托盤怎么設置”文章能幫助大家解決問題。
注意
icon地址一定要正確,否則托盤出不來,要報錯
icon地址需要絕對路徑
報錯:
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最小化托盤怎么設置”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。