Центровка оконной рамы или диалог на экране 24 Июль 2009 by admin·0 Comments Этот совет описывает центр Swing кадр, или диалоговое окно на экране. // 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); other