-1

因此,当我单击 JFrame 上的按钮时,我希望该按钮在单击时更改其背景。有人可以帮忙吗?

谢谢!

4

3 回答 3

2

单击按钮时,我希望更改按钮背景

按下按钮之前:

在此处输入图像描述

按下按钮后:

在此处输入图像描述

import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;

public class Test {

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

    public static void createAndShowJFrame() {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {

                JFrame frame = createJFrame();
                frame.setVisible(true);

            }
        });
    }

    private static JFrame createJFrame() {
        JFrame frame = new JFrame("Test");
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
        ActionListener al = new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent ae) {

                JButton btn = ((JButton) ae.getSource());//get the button that was clicked

                //set its background and foreground
                btn.setBackground(Color.RED);
                btn.setForeground(Color.GREEN);
            }
        };

        JButton b = new JButton("Test");
        b.addActionListener(al);

        frame.add(b);

        frame.pack();

        return frame;
    }
}
于 2013-06-28T11:41:11.647 回答
2

您可以通过多种方式实现这一目标。以下是为所有按钮应用按钮选择颜色的示例片段。

UIManager.put("Button.select", new ColorUIResource(255, 0, 0));
JButton button = new JButton("Submit");
JFrame frame = new JFrame("JButton select color");
frame.add(button);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 80);
frame.setVisible(true);
于 2013-06-28T11:44:03.380 回答
2

AJToggleButton可能是理想的,如Swing JToolbarButton 按下 所示注意,您需要添加一些代码以确保按钮只能单击一次。

或者,您可以使用标准JButton并调用AbstractButton.setDisabledIcon(Icon)。单击时禁用按钮,它将翻转到备用图标。

于 2013-06-28T11:52:22.733 回答