我有一个像这样的选项对话框:
String[] options = ["Yes", "No"]; //button names
int n = JOptionPane.showOptionDialog(singleFrameService.getFrame(),
"Some Question?",
"",
JOptionPane.YES_NO_OPTION,
JOptionPane.QUESTION_MESSAGE,
null, //do not use a custom Icon
options, //the titles of buttons
options[0]); //default button title
//if press yes
if (n == JOptionPane.YES_OPTION){
//make some if pressed Yes
}
当我使用鼠标并按是/否时 - 一切正常......但是当我开始使用键盘时,按 TAB 转到“否”按钮,然后按 ENTER - 工作“是”选项