Código:
gracias por la ayuda. public javoComponentPanel(String title){ this.setTitle(title); this.addWindowFocusListener(new WindowAdapter() { @Override public void windowClosing(java.awt.event.WindowEvent evt) { exitForm(evt); } }); //this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); } private void exitForm(java.awt.event.WindowEvent evt) { this.dispose(); }