UNPKG

quickbuild

Version:

A mature, feature-complete application generator with an emphasis on speed

14 lines (12 loc) 370 B
const {ipcMain, dialog} = require('electron') ipcMain.on('open-information-dialog', (event) => { const options = { type: 'info', title: 'Information', message: "This is an information dialog. Isn't it nice?", buttons: ['Yes', 'No'] } dialog.showMessageBox(options, (index) => { event.sender.send('information-dialog-selection', index) }) })