What's the easiest way to centre a java.awt.Window, such as a JFrame or a JDialog?
|
|
|||||
|
|
|
Note that both the setLocationRelativeTo(null) and Tookit.getDefaultToolkit().getScreenSize() techniques work only for the primary monitor. If you are in a multi-monitor environment, you may need to get information about the specific monitor the window is on before doing this kind of calculation. Sometimes important, sometimes not... See GraphicsEnvironment javadocs for more info on how to get this. |
||
|
|
|
This should work in all versions of Java
|
|||
|
|
|
|
From this blog:
|
||
|
