1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
int s= JOptionPane.showOptionDialog(null,
Language.getLine(9),
Language.getLine(10),
JOptionPane.DEFAULT_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
options,
options[0]);
switch(s) {
// Yes on click
case 0:
System.out.println("...... SAUVEGARDE A FAIRE ......");
window.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
break;
// No on click
case 1:
window.dispose();
System.out.println("ne pas sauvegarder");
break;
// Cancel on click
case 2:
window.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
System.out.println("cancel");
break;
} |
Partager