jdialog模态化
【摘要】
JButton btnNewPeople = new JButton("新建联系人"); btnNewPeople.addActionListener(new ActionListener() ...
- JButton btnNewPeople = new JButton("新建联系人");
- btnNewPeople.addActionListener(new ActionListener() {
- public void actionPerformed(ActionEvent e) {
- NewContactWindow newContactWindow = new NewContactWindow(MainWindow.this, true);
- newContactWindow.setVisible(true);
- }
- });
第一个参数为父窗口的对象,第二个参数就是是否设置模态化,在这里modal为true
然后在构造方法里可以自定义JDialog的窗口样式
注意:不能添加:
setAlwaysOnTop(),
setType();
this.setModalityType(ModalityType.APPLICATION_MODAL); this.setUndecorated(true); this.setModal(true);//与前面注释的super效果一样
否则会有问题出现
注意:
setVisible(true);
super(parent, modal); this.setTitle("质谱实验结果 "); this.setSize((int) (width * 0.85f), (int) (height * 0.9f)); this.setLocationRelativeTo(null); // 此窗口将置于屏幕的中央。 this.user = user; init(); setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE); setVisible(true);
文章来源: blog.csdn.net,作者:网奇,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/jacke121/article/details/72630345
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)