在应用程序退出确认对话框中,我想要一种方法将按钮默认设置为No(N) 此外,是(Y),否(N)想按此顺序排列它们(我不想使用方法在左侧排列No(N))。
function confirm_dialog(strtitle, strmessage) {
const {dialog} = require('electron').remote;
let choice = dialog.showMessageBox(
remote.getCurrentWindow(),
{
type: 'question',
buttons: ['Yes', 'No'],
title: strtitle,
message: strmessage,
});
return choice === 0;
};