private JDialog dialog;
private JTextArea text;
private JPanel buttons, filler;
private JRadioButton questions, list;
private ButtonGroup group;
private JButton confirm;
dialog = new JDialog(Main.masterWindow, lang.getString("newTitle"), true);
dialog.getContentPane().setLayout(new BoxLayout(dialog.getContentPane(), BoxLayout.Y_AXIS));
dialog.setResizable(false);
text = new JTextArea();
//this works
text.setBackground(Color.RED);
//this both don't
text.setBackground((Color)UIManager.get("control");
text.setBackground(dialog.getContentPane().getBackground());
dialog.setVisible(true);
我正在使用 Nimbus L&F,“控制”是我的对话框的背景颜色。如果我设置任何其他颜色(在此示例中为红色),它会显示,但如果我将其设置为这个颜色,它会保持白色。
我在默认(金属)L&F 上没有问题...
有什么问题?