import javax.swing.JFrame;
class Demo extends JFrame{
//コンストラクタ
public Demo(String title) {
super(title);
this.setSize(300, 200);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
new Demo("サンプル");
}
}
コンストラクタ内にthis.setResizable(false);を追加すると
ウィンドウの大きさを変えることができなくなります。
===== 実行結果 =====
=================
† 地球の末路!? †
【このカテゴリーの最新記事】
-
no image
-
no image