@Keyword
public static int showConfirmDialog(String title, String message) {
int returnValue = 0;
Font font = new Font(Font.SANS_SERIF, Font.PLAIN, 58);
UIManager.put("OptionPane.messageFont", font);
UIManager.put("OptionPane.buttonFont", font);
JFrame frame = new JFrame(title)
frame.setAlwaysOnTop(true)
frame.requestFocus()
return JOptionPane.showConfirmDialog(frame, message, title, JOptionPane.YES_NO_OPTION);
}
references
