|
Java™ by example!
|
|
|
How do I center a JDialog on the screen?
One solution for this problem is:
 MyDialog myDialog = new MyDialog(); myDialog.pack(); // Show the dialog in the middle of the screen myDialog.setLocationRelativeTo(null); myDialog.show();
|
Further Information
Author of answer: Markus Naumann
Comments to this answer are only viewable by members. Login or become a member!
|
|
|
|
|