我试图调整Nimbus外观的颜色,但它只是部分的工作。 特别是我有问题,调整菜单栏的颜色。
这里是一个正在运行的例子:
import java.awt.Color;
import java.awt.Dimension;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.UIManager.LookAndFeelInfo;
import javax.swing.UnsupportedLookAndFeelException;
public class JMenuColorTest extends JFrame {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
try {
adjustLAF();
} catch (Exception e) {
e.printStackTrace();
}
JMenuColorTest test = new JMenuColorTest();
test.setDefaultCloseOperation(EXIT_ON_CLOSE);
test.setPreferredSize(new Dimension(400, 300));
test.pack();
test.setLocationRelativeTo(null);
JMenuBar menuBar = new JMenuBar();
JMenu menu1 = new JMenu("Menu 1");
menu1.add(new JMenuItem("Item 1.1"));
menu1.add(new JMenuItem("Item 1.2"));
menu1.add(new JMenuItem("Item 1.3"));
menuBar.add(menu1);
JMenu menu2 = new JMenu("Menu 2");
menu2.add(new JMenuItem("Item 2.1"));
menu2.add(new JMenuItem("Item 2.2"));
menu2.add(new JMenuItem("Item 2.3"));
menuBar.add(menu2);
test.setJMenuBar(menuBar);
test.setVisible(true);
}
private void adjustLAF() throws ClassNotFoundException,
InstantiationException, IllegalAccessException,
UnsupportedLookAndFeelException {
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
// Working
UIManager.put("control", Color.GREEN);
// Not working
UIManager.getLookAndFeelDefaults().put(
"MenuItem[Enabled].textForeground", Color.RED);
// Set the look and feel
UIManager.setLookAndFeel(info.getClassName());
// Not working
UIManager.put("control", Color.GREEN);
// Working
UIManager.getLookAndFeelDefaults().put(
"MenuItem[Enabled].textForeground", Color.RED);
break;
}
}
}
});
}
}
正如你可以看到我能够设置控件的背景和设定JMenuItem的前景色。 但我不能够改变的JMenuItem的背景下,无论是我能够改变菜单栏的颜色。 我尝试了很多按键从http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/_nimbusDefaults.html ,但我不能改变菜单栏的颜色。
另一个问题是什么? 为什么我要设置查找之前调用一次颜色的调整和感觉以及设置查找后一次,感觉如何? 为什么我有一次“UIManager.put()”,一旦调用“UIManager.getLookAndFeelDefaults()。把()”?
在我看来,那灵气真的是越野车,不适合专业用途。 我试图同时使用JDK 35年6月1日和JDK 1.7.7,但两者的JDK我不能让系统运行所期望?
任何建议如何调整菜单栏的颜色灵气感官感觉?
提前致谢