HomeJavaSwing JDialog

JDialog

インスタンス生成

public class クラス名 extends Dialog{

	public クラス名( JFrame frame , boolean modal ) {
		super( frame,modal );
	}
}

内部パネル設定

this.setContentPane(パネルオブジェクト名);

座標指定

this.setBounds(左上 x, 左上 y, 右下 x, 右下 y);

タイトル削除

this.setUndecorated(true);

リサイズ可

this.setResizable(false);
//true:リサイズ可
//false:リサイズ不可



ページトップへ

データベース

サーバ

Copyright (C) MadCap. All Rights Reserved.