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,而「control」是我的對話框的背景顏色。如果我設置了其他顏色(在這個例子中是紅色),它會顯示,但如果我將它設置爲這個顏色,它會保持白色。JTextArea背景問題
我沒有缺省(金屬)長&˚FTIS問題...
什麼問題?
nimbus不能這樣工作:-) – mKorbel