Is there a way to remove the close button ("X") from the JDialog title bar?
|
|
You can remove the whole dialog title by calling dialog.setUndecorated(true) but this means that the dialog can't be moved anymore. You can also execute dialog.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE) to prevent that the button does anything. Beside that, I don't think that there's a way to remove the X completely. |
|||
|
|
|
I believe that you can call Removing the 'X' may not be a great idea, though, as you want your users to be able to close the dialog easily. Best bet is to control what happens when the users clicks the 'X' by using |
|||
|
|
|
As of Java 1.7 (AKA Dolphin or Java 7), you can not disable or remove the close button on a Window. You can remove/disable the maximize button with |
|||||
|
|
|||||
|
protected by Gilbert Le Blanc Apr 23 at 16:21
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.