1

除了标签之外,如何在按钮上创建带有图像的 JOptionPane?例如,如果我想要确定按钮上的复选标记和取消按钮上的 x 图标?如果不从头开始将整个对话框创建为 JFrame/JPanel,这是否可能?

4

3 回答 3

5

JOptionPane.showOptionDialog()有一个参数options,它是一个 s 的数组Component。您可以将一组自定义按钮传递给它:

JOptionPane.showOptionDialog( parent, question, title,
   JOptionPane.YES_NO_OPTION, JOptionPane.WARNING_MESSAGE
   new Component[]{ new JButton("OK", myIcon), 
                    new JButton("cancel", myOtherIcon) 
                  }
 );

从以下文档JOptionPane

options - 表示用户可以做出的可能选择的对象数组;如果对象是组件,则它们被正确渲染;

或者,您可以子类JOptionPane化,并直接更改组件及其布局。

于 2012-12-17T20:43:56.650 回答
2

我在java 2 学校上发现了一个看起来有点混乱的解决方案,它似乎可以实际工作并响应按钮点击和动作侦听器:

    JFrame frame = new JFrame();
    JOptionPane optionPane = new JOptionPane();
    optionPane.setMessage("I got an icon and a text label");
    optionPane.setMessageType(JOptionPane.INFORMATION_MESSAGE);
    Icon icon = new ImageIcon("yourFile.gif");
    JButton jButton = getButton(optionPane, "OK", icon);
    optionPane.setOptions(new Object[] { jButton });
    JDialog dialog = optionPane.createDialog(frame, "Icon/Text Button");
    dialog.setVisible(true);

  }

  public static JButton getButton(final JOptionPane optionPane, String text, Icon icon) {
    final JButton button = new JButton(text, icon);
    ActionListener actionListener = new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        // Return current text label, instead of argument to method
        optionPane.setValue(button.getText());
        System.out.println(button.getText());
      }
    };
    button.addActionListener(actionListener);
    return button;
  }
于 2012-12-17T21:22:08.700 回答
1

我有同样的问题。用这个动作监听器解决:

    JButton ok = new JButton("OK");
    ok.addActionListener(new ActionListener() {
        @Override
        public void actionPerformed(ActionEvent e) {
            Container parent = ok.getParent();
            while (parent != null && !(parent instanceof JDialog)) {
                parent = parent.getParent();
            }
            parent.setVisible(false);
        }
    });
于 2020-08-07T18:40:21.827 回答