I've created a stand-alone java desktop application in Netbeans 6.9. I want to set the action for the close button of my application. I want to know how and where to set the code for the action of that close button. Can anyone please help me regarding this?
-Thanks in advance

link|improve this question
2  
You should set aside your IDE and learn Java. – Andrew Thompson Feb 6 '11 at 16:00
feedback

4 Answers

You have to register an ActionListener on your close button. In this listener you can define what do to.

How add ActionListener to JButton in Java Swing

link|improve this answer
I don't know netbeans has automaticaaly created it when I chose Java Desktop Application option in create new project dialog. – user594860 Feb 6 '11 at 11:11
feedback

I think answers for How to close a java swing application from the code will be helpful too

link|improve this answer
feedback

Right-click on the button then, > Events > Action > actionPerformed. NetBeans will generate the action listener for you:)

Edit: If you want a close listener, then read here.

link|improve this answer
1  
It does not show that "cross" close button in the design view... – user594860 Feb 6 '11 at 11:13
@user - Ah, you want the button in the header. I thought you had your own JButton. See my updated answer:) – Petar Minchev Feb 6 '11 at 11:26
@Peter your answer works for the Jbutton that we create but what to do about the one that is automatically created by Netbeans when we create a desktop app through it?? – user594860 Feb 6 '11 at 18:12
feedback

Once you have the handler working, one convenient approach is to "set the default button by invoking the setDefaultButton() method on a top-level container's root pane." See the tutorial section How to Use JButton Features for details.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.