electron注册全局快捷键

Electron 注册快捷键事件

1
2
3
4
5
6
7
8
9
10
11
12
ipcMain.on('changeWebShot', (event, args) => {
console.log(args)
globalShortcut.unregister(args[0]); // 注销上一次的热键
// 注册新的全局热键
globalShortcut.register(args[1], () => {
// 截屏
Promise.race([operation.webShot()]).then(() => {
event.returnValue = true;
});
})
event.returnValue = true;
})
来发评论吧~
Powered By Valine
v1.5.2