我试图弹出一个对话框,允许用户选择两种颜色中的一种作为背景颜色。为了让它看起来特别漂亮,我想有两个选择以有问题的颜色显示,即:
import java.awt.Color;
import java.awt.Label;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
public class JOptionPaneTest extends JFrame{
public static void main(String[] args) {
new JOptionPaneTest();
}
public JOptionPaneTest() {
Object[] possibilities = new Object[2];
JButton black = new JButton("Black");
JButton white = new JButton("White");
black.setBackground(Color.black);
white.setBackground(Color.white);
black.setForeground(Color.white);
white.setForeground(Color.black);
possibilities[0] = black;
possibilities[1] = white;
JButton l = (JButton)JOptionPane.showInputDialog(this,
"Please specify the background color", "Background check",
JOptionPane.QUESTION_MESSAGE, null, possibilities,
possibilities[0]);
System.out.println("" + l);
}
}
但是,这不起作用 - 它在下拉列表中而不是 JButton 中显示 JButton.toString() 返回值。我还尝试了 JLabel 和 Label 。根据API,JButtons 应该按原样添加到对话框中,因为它们是组件。如果我将 JButton 添加到“消息”参数,它会按预期显示。
知道我做错了什么吗?