Java - How to add a JOptionPane for Yes and No options

前端 未结 4 842
别跟我提以往
别跟我提以往 2020-12-11 21:16

So, I\'ve read the Java API, but still can\'t seem to make heads or tails about how to do this. And believe me I have tried. I want an ActionListener to cause a message box

4条回答
  •  一个人的身影
    2020-12-11 21:55

    final JOptionPane optionPane = new JOptionPane(
    "The only way to close this dialog is by\n"
    + "pressing one of the following buttons.\n"
    + "Do you understand?",
    JOptionPane.QUESTION_MESSAGE,
    JOptionPane.YES_NO_OPTION);
    

    enter image description here

提交回复
热议问题