1

我想为 Swing 应用程序使用系统外观。所以我使用了getSystemLookAndFeelClassName()效果很好的方法。

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());

但是,现在我想更改所有JButtons应用程序(在所有我JFrames的 , JDialogs, JOptionPanes,JFileChoosers等中)并且只有JButtons. 所以我想知道如何扩展系统的外观和感觉,以保持它除了JButtons(和JPanels我想要的灰色背景)之外的所有组件。

谢谢你。

4

2 回答 2

1

最后,我扩展了系统的外观和感觉,如下所示:

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
UIManager.put("ButtonUI", "com.my.package.MyButtonUI");
UIManager.put("Panel.background", Color.green);

MyButtonUI

public class MyButtonUI extends BasicButtonUI {

    public static final int BUTTON_HEIGHT = 24;

    private static final MyButtonUI INSTANCE = new MyButtonUI ();

    public static ComponentUI createUI(JComponent b) {
        return INSTANCE;
    }

    @Override
    public void paint(Graphics g, JComponent c) {
        AbstractButton button = (AbstractButton) c;
        Graphics2D g2d = (Graphics2D) g;
        final int buttonWidth = button.getWidth();
        if (button.getModel().isRollover()) {
            // Rollover
            GradientPaint gp = new GradientPaint(0, 0, Color.green, 0, BUTTON_HEIGHT * 0.6f, Color.red, true);
            g2d.setPaint(gp);
        } else if (button.isEnabled()) {
            // Enabled
            GradientPaint gp = new GradientPaint(0, 0, Color.red, 0, BUTTON_HEIGHT * 0.6f, Color.gray, true);
            g2d.setPaint(gp);
        } else {
            // Disabled
            GradientPaint gp = new GradientPaint(0, 0, Color.black, 0, BUTTON_HEIGHT * 0.6f, Color.blue, true);
            g2d.setPaint(gp);
        }
        g2d.fillRect(0, 0, buttonWidth, BUTTON_HEIGHT);
        super.paint(g, button);
    }

    @Override
    public void update(Graphics g, JComponent c) {
        AbstractButton button = (AbstractButton) c;
        if (isInToolBar(button)) {
            // Toolbar button
            button.setOpaque(false);
            super.paint(g, button);
        } else if (button.isOpaque()) {
            // Other opaque button
            button.setRolloverEnabled(true);
            button.setForeground(Color.white);
            paint(g, button);
        } else {
            // Other non-opaque button
            super.paint(g, button);
        }
    }

    private boolean isInToolBar(AbstractButton button) {
        return SwingUtilities.getAncestorOfClass(JToolBar.class, button) != null;
    }
}

注意:我强烈推荐这个链接:http ://tips4java.wordpress.com/2008/10/09/uimanager-defaults/ (来自 Robin)

谢谢你。

于 2012-09-28T14:33:45.293 回答
0

您还可以创建自己的按钮类,例如扩展 JButton 的 CustomButton,进行所有更改并使用它来代替标准的 JButton。这样,您可以同时使用自定义和标准按钮 - 如果您改变主意并想在某处添加标准 JButton ;)

于 2012-09-27T16:34:19.983 回答