背景颜色不会应用于 JButton

Background color wont be applied to JButton

我有一个简单的程序,其中包含一些文本字段和一个按钮的 jcolorchooser。 当我按下按钮时,jcolorchooser 出现,然后我 select 一种颜色。 现在假设我想采用我选择的背景颜色并将其应用于我的按钮,如下所示:

public class Slide extends JFrame{

    Color bgColor;
    JButton colorButton=new JButton();
    JColorChooser colorPicker=new JColorChooser();
    public Slide(){
        JPanel panel=new JPanel();
        panel.setLayout(new MigLayout("", "[][][][][]", "[][][][][][]"));
        colorButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                JColorChooser.showDialog(null, "title", null);
                bgColor=colorPicker.getBackground();
                colorButton.setBackground(bgColor);
            }
        });
        colorButton.setText("Pick a color");
        panel.add(colorButton, "cell 0 5");
        this.setSize(400, 400);
        this.setVisible(true);
        this.setDefaultCloseOperation(EXIT_ON_CLOSE);
    }

    public static void main(String args[]){
        new Slide();
    }
}

问题是我的 bgcolor 不会应用于我的 colorButton.Any 想法?

用户从 JColorChooser 对话框中选择的颜色return作为 showDialog() 方法的 return 值提供给您。

要使用从对话框中选择的颜色更新 JButton,您应该将代码更改为:

colorButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent arg0) {
        Color color = JColorChooser.showDialog(null, "title", null);

        if (color != null) {
            colorButton.setBackground(color);
        }
    }
});

请注意,如果用户取消,方法 showDialog() 将 return null,这就是为什么我们需要在分配颜色之前检查它的值。

方法getBackground()Componentclass的一个方法,所以前面的代码bgColor=colorPicker.getBackground() 只是 return 设置了 JColorChooser 对话框组件的实际颜色。