我正在尝试关闭Java Swing中的当前窗口。我提到了一些问题,我使用了贴出的代码作为答案,但是当我使用下面提到的代码并运行它时,它没有任何效果,窗口变为如图所示。
btn_Ok.addActionListener(new ActionListener() { //ActionListener für Button Bsave
public void actionPerformed(ActionEvent ae) {
if (ae.getSource() == btn_Ok) {
System.out.println("Button Ok Pressed");
setVisible(true);
dialogdatei.dispose();
dialogdatei.dispatchEvent(new WindowEvent(dialogdatei, WindowEvent.WINDOW_CLOSING));
dialogdatei.setDefaultCloseOperation(EXIT_ON_CLOSE);