• title: JFrameの縦横比を一定にする tags: [JFrame] author: aterai pubdate: 2006-11-06 description: JFrameの幅と高さの比率が一定になるように制限します。

概要

JFrameの幅と高さの比率が一定になるように制限します。

サンプルコード

private static final int MW = 320;
private static final int MH = 200;
//...
frame.addComponentListener(new ComponentAdapter() {
  @Override public void componentResized(ComponentEvent e) {
    int fw = frame.getSize().width;
    int fh = MH * fw / MW;
    frame.setSize(MW > fw ? MW : fw, MH > fh ? MH : fh);
  }
});
View in GitHub: Java, Kotlin

解説

上記のサンプルでは、JFrameのサイズを変更した後、その幅から縦横比が同じになるような高さを計算して、JFrame#setSize(int,int)でサイズを設定し直しています。

参考リンク

コメント