Java: Custom Buttons in showInputDialog

后端 未结 2 2025
醉梦人生
醉梦人生 2021-02-12 21:57

How do you add custom text to the buttons of a JOptionPane.showInputDialog?

I know about this question JOptionPane showInputDialog with custom buttons, but it doesn\'t a

2条回答
  •  没有蜡笔的小新
    2021-02-12 22:57

    You can use custom component instead of a string message, for example:

    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    
    public class TestDialog {
    
        public static void main(String[] args) {
            Object[] options1 = { "Try This Number", "Choose A Random Number",
                    "Quit" };
    
            JPanel panel = new JPanel();
            panel.add(new JLabel("Enter number between 0 and 1000"));
            JTextField textField = new JTextField(10);
            panel.add(textField);
    
            int result = JOptionPane.showOptionDialog(null, panel, "Enter a Number",
                    JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE,
                    null, options1, null);
            if (result == JOptionPane.YES_OPTION){
                JOptionPane.showMessageDialog(null, textField.getText());
            }
        }
    }
    

    enter image description here

提交回复
热议问题