快捷键字符串
本文介绍:快捷键字符串
快捷键字符串
const {app, globalShortcut} = require('electron')
app.on('ready', () => {
// 注册 'CommandOrControl+Y' 快捷方式监听器
globalShortcut.register('CommandOrControl+Y', () => {
// 按下 Y + either Command/Control后的处理
})
})可用的功能键
可用的普通键
Last updated