How can I change the title bar color of JOptionPane?
817657Nov 22 2010 — edited Nov 23 2010I tried to customize JOptionPane, so I already did some of them such as background, font and foreground, and they work! But I can't change background color of title bar of JOptionPane.
I tried the following but those don't seem to work.
UIManager.put("OptionPane.questionDialog.border.background", FORM_WINDOW_BACKGROUND);
UIManager.put("OptionPane.questionDialog.titlePane.background", FORM_WINDOW_BACKGROUND);
UIManager.put("OptionPane.questionDialog.titlePane.foreground", FORM_WINDOW_BACKGROUND);
UIManager.put("OptionPane.questionDialog.titlePane.shadow", FORM_WINDOW_BACKGROUND);
I did also for errorDialog and warningDialog as well.
I may sound little ridiculous. Can I remove titlebar of JOptionPane at all?
PS. I DO NOT wanna use JDialog/JFrame instead.
Thanks in advance