使用JOptionPane删除窗口的取消按钮

时间:2013-09-22 22:07:13

标签: java swing joptionpane

我已经尝试了其他主题,所以请不要将我发送到另一个主题/教程,因为我没有设法理解它并且我已经尝试过了。如果您没有帮助,请不要回复。

I would like to change this code to display only "OK" and delete the cancel button.

Object contestacion5 = JOptionPane.showInputDialog(null, "#5 Que describe mejor a la Norteña?", "Examen Tijuanas PR", //3
        JOptionPane.DEFAULT_OPTION, null,
        new Object[] {"Ensalada de espinacas, tomates, zetas, cebolla, tocineta, aguacate, queso de hoja y tiras de maiz crujientes en vinagreta de la casa.",
        "Lechuga romana servida con tomate, cebolla, maiz, aguacate, queso de hoja y tiritas de maiz crujientes acompañado de su seleccion de filetes de pollo de res.", 
        "Ensalada vegetariana de nopales, tomates, cebolla, lechuga romana, queso de hoja, aguacate, y aderezo especial de la casa." }, null);

http://i.snag.gy/6nSlc.jpg

这是图片,我想要它,但没有取消按钮,谢谢!

我试过这样做:Is there a way to only have the OK button in a JOptionPane showInputDialog (and no CANCEL button)?

这就是它显示的内容:http://i.snag.gy/eFoqN.jpg

1 个答案:

答案 0 :(得分:1)

使用linked方法,您可以处理错误。希望你阅读教程。

JPanel panel = new JPanel(new GridLayout(2, 1)); // layout sets combobox under label
JLabel label = new JLabel("#5 Que describe mejor a la Norteña?");
JComboBox selection = new JComboBox(new String[]{"Ensalada de espinacas, tomates, zetas, cebolla, tocineta, aguacate, queso de hoja y tiras de maiz crujientes en vinagreta de la casa.",
            "Lechuga romana servida con tomate, cebolla, maiz, aguacate, queso de hoja y tiritas de maiz crujientes acompañado de su seleccion de filetes de pollo de res.",
            "Ensalada vegetariana de nopales, tomates, cebolla, lechuga romana, queso de hoja, aguacate, y aderezo especial de la casa."});
String[] options = {"OK"};
panel.add(label);
panel.add(selection);
JOptionPane.showOptionDialog(null, panel, "Examen Tijuanas PR",
     JOptionPane.DEFAULT_OPTION, JOptionPane.QUESTION_MESSAGE, 
     null, options, options[0]);

Result (没有足够的图像声誉,因此链接到图像)

enter image description here