//menu.js
const { Menu,BrowserWindow } = require(‘electron‘) var template = [ { label: ‘迷迷糊糊‘, submenu: [ //子菜单 { label: ‘精品‘, click: () => { var win = new BrowserWindow({ width: 300, height: 300, webPreferences: { nodeIntegration: true } }) win.loadFile(‘./html/yellow.html‘) win.on("closed", () => { win = null }) } }, { label: ‘头昏脑胀‘, click: () => { } } ] }, { label: ‘念奴娇‘, submenu: [ { label: ‘赤壁怀古‘, click: () => { } }, { label: ‘大江东去‘, click: () => { } } ] } ] var m = Menu.buildFromTemplate(template) Menu.setApplicationMenu(m)
原文:https://www.cnblogs.com/fwjlucifinil/p/13535393.html