编程语言
首页 > 编程语言> > Java基础入门-第八章-02

Java基础入门-第八章-02

作者:互联网

Java-GUI-Example02

JDialog是Swing组件中通常用来表示对话窗口的顶级容器。

JDialog常用构造分类
JDialog(Frame owner) 构造方法,用来创建一个非模态的对话坤哥,owner为对话框所有者(顶级窗口JFrame)
JDialog(Frame owner,String title) 构造方法,创建一个具有指定标题的非模态对话框
JDialog(Frame owner,boolean modal) 构建一个有指定模式的无标题对话框

 

 

 

 

 

 

 

package GUI;
import javax.swing.*;
public class Example02 {
	private static void createAndShowGUI() {
		//创建并设置JFrame容器窗口
		JFrame frame =new JFrame ("JFrameTest");
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		frame.setSize(350, 150);
		frame.setVisible(true);
		//在JFrame容器窗口基础上创建并设置JDialog容器窗口
		JDialog dialog=new JDialog(frame,"JDialog对话框",true);
		dialog.setDefaultCloseOperation(JDialog.HIDE_ON_CLOSE);
		dialog.setSize(200, 100);
		dialog.setVisible(true);
	}
	public static void main (String[] args) {
		//使用SwingUtilities工具类调用createAndShowGUI()方法执行并显示GUI程序
		SwingUtilities.invokeLater(Example02::createAndShowGUI);
	}
}  

效果:

 

标签:02,JFrame,Java,对话框,frame,第八章,dialog,owner,JDialog
来源: https://www.cnblogs.com/mathZHX/p/14088799.html