I am trying to write a GUI application using NetBeans, and I am getting increasingly tired of it..
I constructed a "Java Desktop Application" using NetBeans. It creates the main form as a org.jdesktop.application.FrameView
descendent. I would like to know what is the proper way to add some code that is executed when the form is closed.
My current attempt so far is to add a WindowAdapter
object using getFrame().addWindowListener
in the constructor, which doesn't work. Because you can't call getFrame
while the frame is not constructed yet. And I can't see it as an event somewhere i the GUI builder.