Merge pull request #9129 from runinspring/patch-1
Update accelerator.md
This commit is contained in:
commit
b11afc8591
1 changed files with 22 additions and 3 deletions
|
@ -4,15 +4,30 @@
|
||||||
|
|
||||||
例如:
|
例如:
|
||||||
|
|
||||||
* `Command+A`
|
* `CommandOrControl+A`
|
||||||
* `Ctrl+Shift+Z`
|
* `CommandOrControl+Shift+Z`
|
||||||
|
|
||||||
|
快捷键使用 [`globalShortcut`](global-shortcut.md)里的 [`register`](global-shortcut.md#globalshortcutregisteraccelerator-callback) 方法注册
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
const {app, globalShortcut} = require('electron')
|
||||||
|
|
||||||
|
app.on('ready', () => {
|
||||||
|
// Register a 'CommandOrControl+Y' shortcut listener.
|
||||||
|
globalShortcut.register('CommandOrControl+Y', () => {
|
||||||
|
// Do stuff when Y and either Command/Control is pressed.
|
||||||
|
})
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
## 运行平台相关的提示
|
## 运行平台相关的提示
|
||||||
|
|
||||||
在 Linux 和 Windows 上,`Command` 键并不存在,因此我们通常用 `CommandOrControl` 来表示“在 macOS 下为 `Command` 键,但在
|
在 Linux 和 Windows 上,`Command` 键并不存在,因此我们通常用 `CommandOrControl` 来表示“在 macOS 下为 `Command` 键,但在
|
||||||
Linux 和 Windows 下为 `Control` 键。
|
Linux 和 Windows 下为 `Control` 键。
|
||||||
|
|
||||||
`Super` 键是指 Linux 和 Windows 上的 `Windows` 键,但是在 macOS 下为 `Command` 键。
|
使用 `Alt` 键 代替 `Option`。`Option` 键只在 macOS 系统上存在,而 `Alt` 键在任何系统上都有效。
|
||||||
|
|
||||||
|
`Super` 键是指 Linux 和 Windows 上的 `Windows` 键,但是在 macOS 下为 `Cmd` 键。
|
||||||
|
|
||||||
## 可用的功能按键
|
## 可用的功能按键
|
||||||
|
|
||||||
|
@ -20,6 +35,8 @@ Linux 和 Windows 下为 `Control` 键。
|
||||||
* `Control`(缩写为 `Ctrl`)
|
* `Control`(缩写为 `Ctrl`)
|
||||||
* `CommandOrControl`(缩写为 `CmdOrCtrl`)
|
* `CommandOrControl`(缩写为 `CmdOrCtrl`)
|
||||||
* `Alt`
|
* `Alt`
|
||||||
|
* `Option`
|
||||||
|
* `AltGr`
|
||||||
* `Shift`
|
* `Shift`
|
||||||
* `Super`
|
* `Super`
|
||||||
|
|
||||||
|
@ -31,6 +48,7 @@ Linux 和 Windows 下为 `Control` 键。
|
||||||
* 类似与 `~`、`!`、`@`、`#`、`$` 的标点符号。
|
* 类似与 `~`、`!`、`@`、`#`、`$` 的标点符号。
|
||||||
* `Plus`
|
* `Plus`
|
||||||
* `Space`
|
* `Space`
|
||||||
|
* `Tab`
|
||||||
* `Backspace`
|
* `Backspace`
|
||||||
* `Delete`
|
* `Delete`
|
||||||
* `Insert`
|
* `Insert`
|
||||||
|
@ -41,3 +59,4 @@ Linux 和 Windows 下为 `Control` 键。
|
||||||
* `Escape`(缩写为 `Esc`)
|
* `Escape`(缩写为 `Esc`)
|
||||||
* `VolumeUp`、`VolumeDown` 和 `VolumeMute`
|
* `VolumeUp`、`VolumeDown` 和 `VolumeMute`
|
||||||
* `MediaNextTrack`、`MediaPreviousTrack`、`MediaStop` 和 `MediaPlayPause`
|
* `MediaNextTrack`、`MediaPreviousTrack`、`MediaStop` 和 `MediaPlayPause`
|
||||||
|
* `PrintScreen`
|
||||||
|
|
Loading…
Reference in a new issue