我有一个带有主 JFrame 的小型应用程序,它以模态形式打开 JDialog。在这个 JDialog 中,我启动了一个 javax.swing.Timer,如果 JDialog 关闭,它应该停止。
public Tasks() {
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
setBounds(100, 100, 800, 600);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);
showTasks();
t = new Timer(10000, new ActionListener() {
public void actionPerformed(ActionEvent e) {
Tasks.this.showTasks();
}
});
t.start();
}
但它只是继续运行。
我试图为 JDialog 实现 WindowListener 并且我覆盖了 windowClosed、windowClosing 甚至 windowDeactivated ... 无济于事
@Override
public void windowClosing(WindowEvent e) {
// TODO Auto-generated method stub
System.out.println("Closing");
t.stop();
}
如何在 JDialog 关闭时停止计时器?