Expand tray menu

增加了托盘菜单图标及功能
This commit is contained in:
TestGifts 2021-02-08 20:24:26 +08:00
parent 97f2ce043b
commit ea52c32400
7 changed files with 29 additions and 1 deletions

View file

@ -22,26 +22,54 @@ export function createTray(win) {
const contextMenu = Menu.buildFromTemplate([
{
label: "播放/暂停",
icon: "src/icon/play.png",
click: () => {
win.webContents.send("play");
},
},
{
label: "上一首",
icon: "src/icon/left.png",
accelerator: "CmdOrCtrl+Left",
click: () => {
win.webContents.send("previous");
},
},
{
label: "下一首",
icon: "src/icon/right.png",
accelerator: "CmdOrCtrl+Right",
click: () => {
win.webContents.send("next");
},
},
{
label: "循环播放",
icon: "src/icon/repeat.png",
accelerator: "Alt+R",
click: () => {
win.webContents.send("repeat");
},
},
{
label: "加入喜欢",
icon: "src/icon/like.png",
accelerator: "CmdOrCtrl+L",
click: () => {
win.webContents.send("like");
},
},
{
label: "退出",
icon: "src/icon/exit.png",
accelerator: "CmdOrCtrl+W",
click: () => {
app.exit();
},
},
]);
tray.popUpContextMenu(contextMenu);
});
return tray;
}

BIN
src/icon/exit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 B

BIN
src/icon/left.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

BIN
src/icon/like.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 B

BIN
src/icon/play.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

BIN
src/icon/repeat.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 B

BIN
src/icon/right.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B