Is there a way to close a JDialog through code such that the Window event listeners will still be notified? I've tried just setting visible to false and disposing, but neither seem to do it.
|
Closing a window (with All three will produce
In general,
Note though that this will pretty much only work for explicit
Note that when you dispose a window you'll get a couple of |
|||||||||||||
|
|
I don't seem to have your problem. When I use the code below windowDeactivated() is called for either setVisible( false ) or dispose() and windowClosed() is also called for dispose(). ClosingDialog.java:
|
|||||||||||||||||
|
|
Dispatch a windowClosing event to the Window. Check out the ExitAction example from the Closing an Application entry. |
|||||||||||||||||
|
|
Untested suggestion: Have you tried getWindowListeners() and then iterating around to fire windowClosed() to each of the WindowListeners? EDIT: the above suggestion is wrong. Keeping it for posterity. I'm afraid calling dialog.dispose() works fine for me in my simple example. |
||||
|
|