Swing:设置JButton的背景

时间:2011-11-19 13:47:21

标签: java swing background-color jbutton

我想设置JButton的背景颜色。为此,我使用    setBackground()方法。

此方法jsut设置按钮的边框颜色,而不是指定颜色的整个按钮。为什么这样 ?这是设置按钮背景颜色的唯一方法。我在哪里犯了错误,因为它只设置了指定颜色按钮的边框而不是实际按钮?

代码:

    account_btn.setAction(actionMap.get("AccountingClicked")); // NOI18N
    account_btn.setBackground(Utility.getBackgroundColor());
    account_btn.setFont(Utility.getButtonFont());
    account_btn.setForeground(Utility.getTextColor());
    org.jdesktop.application.ResourceMap resourceMap = org.jdesktop.application.Application.getInstance(cashaccountingapp.CashAccountingApp.class).getContext().getResourceMap(MainPanel.class);
    account_btn.setText(resourceMap.getString("account_btn.text")); // NOI18N
    account_btn.setBorderPainted(false);
    account_btn.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
    account_btn.setName("account_btn"); // NOI18N
    account_btn.setOpaque(true);
    add(account_btn);

结果: enter image description here

也尝试过设置setOpaque(true)。但是你可以看到account_btn的结果,即“会计”。 setOpaque似乎没有效果。

任何想法。

解决方案:

设置L& F

    private void initLookandFeel() {
    try {
        System.out.println("DEFAULT Look & Feel = " + UIManager.getLookAndFeelDefaults().toString());
        UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
        javax.swing.SwingUtilities.updateComponentTreeUI(this.mainPanel);
        System.out.println("Look & Feel = " + UIManager.getLookAndFeel().toString());
    } catch(Exception e) { ..... }
    }

我在initComponents()之后调用initLookandFeel()并更新我的mainPanel。还需要在初始阶段更新我动态添加的面板,然后无需再设置任何内容。

3 个答案:

答案 0 :(得分:3)

Red Buttons

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

class ColoredButtons {

    ColoredButtons() {
        JPanel gui = new JPanel(new GridLayout(1,0,5,5));

        JButton one = new JButton("One");
        one.setBackground(Color.RED);
        JButton two = new JButton("Two");
        two.setBackground(Color.RED);

        gui.add(one);
        gui.add(two);

        JOptionPane.showMessageDialog(null, gui);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                new ColoredButtons();
            }
        });
    }
}

有我的SSCCE。按钮是红色的。 PLAF是金属。

让我回到:你的SSCCE在哪里?你在用什么PLAF?

答案 1 :(得分:1)

尝试将边框绘制为false和opaque true

account_btn.setBorderPainted(false);
account_btn.setOpaque(true);

答案 2 :(得分:1)

我相信Jbutton背景是由您正在使用的特定外观控制的。要更改背景,您可能需要修改

setUI(ComponentUI newUI)

用你自己的。