我为模态对话框编写了自己的类,但是当我从代码中调用它时,按钮点击没有任何反应。
如果我定义setModal(false)
一切都很好。
我认为并发存在一些问题,但我不确定。
我的错误在哪里?
public class PauseTaskDialog extends JDialog {
private JPanel contentPane;
private JButton buttonOK;
private JButton buttonCancel;
private JCheckBox prioritisingCheckBox;
private JCheckBox simultaneousWorkCheckBox;
private JCheckBox problemsWithDataCheckBox;
private JTextArea comment;
private String taskID;
public PauseTaskDialog(String task) {
this.setContentPane(contentPane);
this.setModal(true);
this.setLocationRelativeTo(null);
this.pack();
this.setTitle("Task pause reasons");
this.taskID = task;
comment.setFont(comment.getFont().deriveFont(14f));
comment.setLineWrap(true);
comment.setWrapStyleWord(true);
buttonOK.addActionListener(e -> {
onOK();
});
buttonCancel.addActionListener(e -> {
onCancel();
});
this.setVisible(true);
}
private void onOK() {
// some code here
}
private void onCancel() {
// some code there
}
}
我以这种方式从我的代码中调用对话框:
PauseTaskDialog dialog = new PauseTaskDialog(taskID);