web-dev-qa-db-ja.com

Java:showInputDialogのカスタムボタン

JOptionPane.showInputDialogのボタンにカスタムテキストをどのように追加しますか?

私はこの質問を知っています JOptionPane showInputDialog with custom buttons 、しかしそれは尋ねられた質問に答えません、それはそれらをJavaDocsに参照するだけで、それには答えません。

これまでのコード:

Object[] options1 = {"Try This Number",
                 "Choose A Random Number",
                 "Quit"};

JOptionPane.showOptionDialog(null,
                 "Enter a number between 0 and 10000",
                 "Enter a Number",
                 JOptionPane.YES_NO_CANCEL_OPTION,
                 JOptionPane.PLAIN_MESSAGE,
                 null,
                 options1,
                 null);

How I want it to look

これにテキストフィールドを追加したいと思います。

16
ZuluDeltaNiner

たとえば、文字列メッセージの代わりにカスタムコンポーネントを使用できます。

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

25
tenorsax

ダイアログの作成方法:ボタンのテキストのカスタマイズ をご覧ください。

以下に例を示します。

enter image description here

Object[] options = {"Yes, please",
                    "No, thanks",
                    "No eggs, no ham!"};
int n = JOptionPane.showOptionDialog(frame,//parent container of JOptionPane
    "Would you like some green eggs to go "
    + "with that ham?",
    "A Silly Question",
    JOptionPane.YES_NO_CANCEL_OPTION,
    JOptionPane.QUESTION_MESSAGE,
    null,//do not use a custom Icon
    options,//the titles of buttons
    options[2]);//default button title
9
David Kroukamp