我有JTextPane
一个不同的背景和前景颜色。现在当 L&F 更改为 Nimbus L&F 时,我JTextPane
的颜色发生了变化。怎么会?只有这个类有这样的问题。而其他人工作得很好。有什么问题?
这就是我改变 L&F 的方式:
for (javax.swing.UIManager.LookAndFeelInfo info :
javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(PlayBackVoice.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(PlayBackVoice.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(PlayBackVoice.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(PlayBackVoice.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
另一方面,在设置此 L&F 之前,颜色变化非常好。或者这些陈述运作良好:
jtp.setBackground(Color.BLACK);
jtp.setForeground(Color.WHITE);
知道有什么问题吗?