icon: path.join(__dirname, '../dist/img/facebook.png')
注意:开发环境无效,打包后才生效
代码如下:
dialog.showMessageBox({ // type: 'warning', title: '退出提示', // icon: path.join(__dirname, '../dist/img/facebook.png'), message:
当前运行${returnMapLen(mapView)}个应用,确定要退出吗?, buttons: ['取消', '确定'] }, (idx) => { if (idx == 0) { e.preventDefault() extensions = null } else { mainWindow = null; // if (process.platform !== 'darwin') app.quit() } })
退出应用前生命周期:before-quit