码头
Electron 提供 API 来配置 macOS Dock 中的应用程序图标。macOS 专用 API 可用于创建自定义 Dock 菜单,但 Electron 也使用应用程序 Dock 图标作为跨平台功能(如 最近文档 和 应用程序进度)的入口点。
自定义 Dock 通常用于添加对任务的快捷方式,用户不想为此打开整个应用程序窗口。
Terminal.app 的 Dock 菜单
要设置自定义 Dock 菜单,您需要使用 app.dock.setMenu
API,该 API 仅在 macOS 上可用。
- main.js
- index.html
const { app, BrowserWindow, Menu } = require('electron/main')
function createWindow () {
const win = new BrowserWindow({
width: 800,
height: 600
})
win.loadFile('index.html')
}
const dockMenu = Menu.buildFromTemplate([
{
label: 'New Window',
click () { console.log('New Window') }
}, {
label: 'New Window with Settings',
submenu: [
{ label: 'Basic' },
{ label: 'Pro' }
]
},
{ label: 'New Command...' }
])
app.whenReady().then(() => {
if (process.platform === 'darwin') {
app.dock.setMenu(dockMenu)
}
}).then(createWindow)
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
})
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
</head>
<body>
<h1>Hello World!</h1>
<p>Right click the dock icon to see the custom menu options.</p>
</body>
</html>
启动 Electron 应用程序后,右键单击应用程序图标。您应该会看到您刚刚定义的自定义菜单。