当我按下投诉框时,每个输入对话框都会显示两次...我尝试删除boxComplain.setSelected(true)并起作用(仅显示一次),但是在输入输入后使该复选框消失了。

    class CheckBoxListener implements ItemListener {

    public void itemStateChanged(ItemEvent event) {
    if(boxComplain.isSelected())

      {
          ab=JOptionPane.showInputDialog("Enter Reason of Complain: ");
          ac=JOptionPane.showInputDialog("Enter What The Complain is About: ");
          label4.setText("Complain request");
          boxComplain.setSelected(true);
      }
      }
      }

最佳答案

ItemListener被调用两次,一次是在更改原始选择时,第二次是在注册新选择时。考虑改用ActionListener。

另一个技巧是删除并添加ItemListener:

     public void itemStateChanged(ItemEvent event) {
        if(boxComplain.isSelected()) {
           ab=JOptionPane.showInputDialog("Enter Reason of Complain: ");
           ac=JOptionPane.showInputDialog("Enter What The Complain is About: ");
           label4.setText("Complain request");
           boxComplain.removeItemListener(this);
           boxComplain.setSelected(true);
           boxComplain.addItemListener(this);
         }
     }

10-04 14:11