我想使用Swing应用程序的系统外观。所以我使用的getSystemLookAndFeelClassName()
方法非常好。
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
但是,现在我要更改应用的所有JButtons
(在我的所有JFrames
,JDialogs
,JOptionPanes
,JFileChoosers
等。 )而且只有JButtons
。所以我想知道如何扩展系统的外观和感觉,以保留除JButtons
(以及我想要的灰色背景的JPanels
)之外的所有组件。
谢谢。
答案 0 :(得分: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)
谢谢。
答案 1 :(得分:0)
您也可以创建自己的按钮类,例如扩展JButton的CustomButton会进行所有更改并使用它而不是标准的JButton。这样你可以使用自定义和标准按钮 - 如果你改变主意并想在某处添加标准的JButton;)