• title: JFrameをスクリーン中央に表示 tags: [JFrame] author: aterai pubdate: 2003-12-29 description: フレームやダイアログなどをスクリーンの中央に表示します。

概要

フレームやダイアログなどをスクリーンの中央に表示します。

サンプルコード

JFrame frame = new JFrame("フレームをスクリーン中央に表示");
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.getContentPane().add(new MainPanel());
frame.pack();
frame.setLocationRelativeTo(null);
//以下は自前で位置を計算する場合
//Rectangle screen = frame.getGraphicsConfiguration().getBounds();
//frame.setLocation(screen.x + screen.width/2  - frame.getSize().width/2,
//                  screen.y + screen.height/2 - frame.getSize().height/2);
frame.setVisible(true);
View in GitHub: Java, Kotlin

解説

JFrame#setLocationRelativeToメソッドで、基準となる親ウィンドウをnullにすると、そのフレームは画面中央に表示されます。

JFrame#setLocationメソッドで任意の位置を指定する場合は、フレームの左上隅座標を計算します。

どちらも、フレームをpack()、もしくはsetSize(int,int)した後で実行するようにしてください。

コメント