What's the code to position a JFrame N pixels (say 300 pixels in x-direction) away from the center of the screen before one calls setVisible(true)?
|
|
Some info provide by the Frame Javadoc, could help you to set location of your JFrame before the call setVisible(true) with the setLocation() method You can get the center point of the screen by calling GraphicsEnvironment.getCenterPoint() |
||
|
|
|
|
I typically do something like the following to center a JFrame. You can add the offset to the
You can add additional logic to assure that the offset window is still completely within the screen as determined by |
||||||||
|
