Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/07/2013, 14:41
cazador1992
 
Fecha de Ingreso: mayo-2013
Ubicación: Córdoba
Mensajes: 139
Antigüedad: 11 años, 6 meses
Puntos: 9
Respuesta: Cancelar evento

Ahhh, perdona entendi mal, crei que lo querias con un boton que cerrara el programa, si es con la X:

Código Java:
Ver original
  1. setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);//tienes que agregar esto nada mas
  2.  
  3.         this.addWindowListener(new WindowAdapter() {
  4.             @Override
  5.             public void windowClosing(WindowEvent e) {
  6.                 int exit = JOptionPane.showConfirmDialog(null,
  7.                         "¿Seguro que quieres salir?", "¿Seguro?",
  8.                         JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE);
  9.                 if (exit == JOptionPane.YES_OPTION || exit == JOptionPane.CLOSED_OPTION) {
  10.                     JOptionPane.showMessageDialog(null, "Adios");
  11.                     System.exit(0);
  12.                 }
  13.             }
  14.         }