发布于2021-03-13 14:10 阅读(1294) 评论(0) 点赞(8) 收藏(5)
package com.lddx.day0309;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JPanel;
//对话框JDialog(模态对话框,非模态对话框)
public class TestDialog {
public static void main(String[] args) {
TestDialog d=new TestDialog();
d.init();
}
JFrame f=new JFrame();
public void init(){
JPanel p=new JPanel();
JButton b1=new JButton("模态按钮");
JButton b2=new JButton("非模态按钮");
//把内部类绑定到按钮
MyListener ml=new MyListener();
b1.addActionListener(ml);
b2.addActionListener(ml);
p.add(b1);
p.add(b2);
f.add(p);
f.setTitle("对话框");
f.setSize(600, 600);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
//定义内部类实现接口ActionListener接口
public class MyListener implements ActionListener{
public void actionPerformed(ActionEvent e) {
String str=e.getActionCommand();//获得事件源内容
System.out.println(str);
if(str.equals("模态按钮"))
{
JDialog d=new JDialog(f,"模态对话框");
d.setModal(true);//设置对话框为模态对话框
d.setSize(300, 300);
d.setTitle("What are doing!");
d.setVisible(true);//设置对话框可见
}
else
{
JDialog d=new JDialog(f,"非模态对话框");
d.setModal(false);//设置对话框为非模态对话框
d.setSize(300, 300);
d.setTitle("你弄啥嘞!");
d.setVisible(true);//设置对话框可见
}
}
}
}
原文链接:https://blog.csdn.net/gezongbo/article/details/114684774
作者:木得事
链接:http://www.javaheidong.com/blog/article/114290/d4ea167ff92c5ed46ae7/
来源:java黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 java黑洞网 All Rights Reserved 版权所有,并保留所有权利。京ICP备18063182号-2
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!