1

我有一个关于将背景颜色设置为JButton.

似乎这个方法只改变了边框的颜色。这是区别(左边是jButton):

在此处输入图像描述

有没有办法使背景相同?

setLookAndFeel在 Windows 8 上使用。

4

2 回答 2

20

这将适用于 Metal(默认)或 Windows PLAF。

import java.awt.Color;
import javax.swing.*;

class ColoredButton {

    public static void main(String[] args) {
        Runnable r = () -> {
            try {
                UIManager.setLookAndFeel(
                        UIManager.getSystemLookAndFeelClassName());
            } catch (Exception e) {
                e.printStackTrace();
            }

            JButton b1 = new JButton("Button 1");
            b1.setBackground(Color.RED);
            // these next two lines do the magic..
            b1.setContentAreaFilled(false);
            b1.setOpaque(true);

            JOptionPane.showMessageDialog(null, b1);
        };
        SwingUtilities.invokeLater(r);
    }
}
于 2013-08-10T18:53:08.810 回答
0

在按钮上使用 .setOpaque(true)。

于 2013-08-10T18:53:43.157 回答