如何将自定义文本添加到 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);
我想为此添加一个文本字段。