A voir également:
- Fermer une fenetre sous java
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Java décompiler - Télécharger - Langages
- Fenêtre hors écran windows 11 - Guide
1 réponse
choubaka
Messages postés
39410
Date d'inscription
jeudi 4 avril 2002
Statut
Modérateur
Dernière intervention
3 janvier 2025
2 104
28 mai 2002 à 12:49
28 mai 2002 à 12:49
Salut, utilise ceci
setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE).
ou alors setDefaultCloseOperation(WindowConstants.HIDE_ON_CLOSE).
ou encore (et c'est même mieux)
//dans le constructeur
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent evt) {
exitForm();
}
}
);
//
private void exitForm() {
if(JOptionPane.showConfirmDialog(null,"Do you really want to close the configuration ?","Question",JOptionPane.OK_CANCEL_OPTION,JOptionPane.QUESTION_MESSAGE)==0){
this.setVisible(false);
}
}
}
Chouba
"I want to be Oo Minded"
setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE).
ou alors setDefaultCloseOperation(WindowConstants.HIDE_ON_CLOSE).
ou encore (et c'est même mieux)
//dans le constructeur
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent evt) {
exitForm();
}
}
);
//
private void exitForm() {
if(JOptionPane.showConfirmDialog(null,"Do you really want to close the configuration ?","Question",JOptionPane.OK_CANCEL_OPTION,JOptionPane.QUESTION_MESSAGE)==0){
this.setVisible(false);
}
}
}
Chouba
"I want to be Oo Minded"
28 mai 2002 à 13:02