我有一个 Swing JButton,并且我还在为我的项目使用以下代码:
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
现在,当尝试使用它更改一个按钮的背景时,btnNewButton.setBackground(Color.RED);
它不会变成红色,只有边框变成红色。
如何在仍UIManager.getSystemLookAndFeelClassName()
用于其余组件/项目的同时将此背景变为红色?