我用以下代码更改JOptionPane的背景:

 UIManager.put("OptionPane.background",new ColorUIResource(204, 255, 255));


但是结果看起来不像我期望的那样

java - 更改JOptionPane的背景-LMLPHP

最佳答案

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
UIManager.put("OptionPane.background", Color.BLUE);
UIManager.put("Panel.background", Color.BLUE);
JOptionPane.showConfirmDialog(null, "YOUR INFORMATION HERE");

关于java - 更改JOptionPane的背景,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45064426/

10-10 06:01