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では問題ありません...
どうしたの?