大家好,我在 JcheckBox 侦听器中添加 joptionpane 时遇到了一些困难
public void itemStateChanged(ItemEvent evt) {
if(evt.getStateChange() == ItemEvent.SELECTED){
///some code
JOptionPane.showMessageDialog(null, "Message", "Alert",
JOptionPane.INFORMATION_MESSAGE);
}
}
所以它工作正常,但问题是 JCheckBox 被选中并立即取消选中我该如何解决这个问题?
干杯