Swing/ConstrainedProportions のバックアップ(No.9)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/ConstrainedProportions へ行く。
- 1 (2007-08-23 (木) 23:03:12)
- 2 (2007-11-10 (土) 00:17:13)
- 3 (2007-11-12 (月) 11:45:22)
- 4 (2012-08-11 (土) 21:40:00)
- 5 (2014-12-03 (水) 16:00:35)
- 6 (2016-03-03 (木) 17:55:47)
- 7 (2016-09-17 (土) 20:53:03)
- 8 (2017-08-25 (金) 21:09:43)
- 9 (2018-09-13 (木) 15:19:14)
- 10 (2019-05-22 (水) 19:35:38)
- 11 (2020-09-17 (木) 10:43:36)
- 12 (2022-05-18 (水) 06:21:43)
- category: swing folder: ConstrainedProportions title: JFrameの縦横比を一定にする tags: [JFrame] author: aterai pubdate: 2006-11-06T14:28:33+09:00 description: JFrameの幅と高さの比率が一定になるように制限します。 image:
概要
JFrame
の幅と高さの比率が一定になるように制限します。
Screenshot
Advertisement
サンプルコード
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)
で設定し直しています。
- 注:
- 現状
Windows 10
+JDK 1.8.0_141
の環境では正常に動作していない
- 現状