如何将自定义文本添加到JOptionPane.showInputDialog的按钮?
我知道这个问题JOptionPane showInputDialog with custom buttons,但它没有回答问题,它只是将它们引用到JavaDocs,而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);
我想在此添加一个文本字段。
答案 0 :(得分:23)
您可以使用自定义组件而不是字符串消息,例如:
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());
}
}
}
答案 1 :(得分:9)
查看How to Make Dialogs: Customizing Button Text。
这是一个给出的例子:
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