gpt4 book ai didi

java - 通过代码处理 JDialog,不要让用户关闭它

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:58:17 26 4
gpt4 key购买 nike

我有一个简短的代码,我想配置一个对话框,但不希望用户能够关闭它,它根本不起作用,请帮助我。

    import javax.swing.*;
public class Processing extends JOptionPane{

JDialog jd;
public Processing(){
super(null, JOptionPane.DEFAULT_OPTION,
JOptionPane.INFORMATION_MESSAGE, null, new Object[]{});
Icon processPic = new ImageIcon("C:\\Users\\Judit\\Desktop\\Mesekocka3D"
+ "\\externals\\pics\\szamitas.gif");

setMessage(processPic);
jd = createDialog("Számítás");

jd.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
jd.setVisible(true);
jd.dispose();
}
}

这是我的代码现在的样子,我使用 Jdialog 而不是 Joptionpane,我应该写更多的字符以使网站接受我的编辑吗?

import javax.swing.*;



public class Mifasz
{
private static class Processing extends JDialog{

public Processing(){
Icon processPic = new ImageIcon("C:\\Users\\Judit\\Desktop\\Mesekocka3D"
+ "\\externals\\pics\\szamitas.gif");
JLabel label = new JLabel(processPic);
add(label);
setTitle("Számítás");
setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
setSize(400, 70);
setLocation(330, 300);
setModal(true);
setVisible(true);
dispose();
}
}

public static void main(String[] args)
{
Processing pc = new Processing();
}

}

最佳答案

I'd like to show a gif for the user for a short time, it's like a loadingscreen, I don't want him to do anything with the app till, so I'm using joptionpane, but I would also like to disable the X button, so I'm using jdialog, becouse I didn't find an option to disable the optionpane's X button.

1) 你可以使用未修饰的JDialog#setUndecorated(true);

2) 将gif 设为IconJLabel

3) 使用Swing Timer对于计时,Swing Timer 的输出可能是 Swing ActionactionPerformed 里面放 JDialog#setVisible(fasle);

编辑

i'd like to block it, and it need to be used as many times the user clicks on a JCombobox item

1) 仅创建一次 JDialog,您将仅重用它

2) 以预期的延迟运行 Swing Timer#repeat(false),在 actionPerformed 中放置 JDialog#setVisible(fasle);

3) 在来自所选 Item (JComboBox) 的事件上,更改 JLabel myLabel 中的 Icon #setIcon(myAnotherGIF)

4) 在invokeLater 内包裹JDialog#setVisible(true);

5) 不需要任何其他步骤

只在特殊情况下

6) 你必须打电话

myIcon.getImage().flush();
myLabel.setIcon(myIcon);

如果您对JLabel 中的Icon 重绘有问题

关于java - 通过代码处理 JDialog,不要让用户关闭它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10235202/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com