28 September 2010

Centering application on the screen

// Get the size of the screen
Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
    
// Determine the new location of the window
int w = window.getSize().width;
int h = window.getSize().height;
int x = (dim.width-w)/2;
int y = (dim.height-h)/2;
    
// Move the window
window.setLocation(x, y);


No comments:

Post a Comment