JComboBox Background Color
Hi,When I use setBackground(Color.WHITE), the JComboBox button also changes to white. How do I set the JComboBox background to WHITE without affecting the button? Thanks.
[184 byte] By [
Amarisa] at [2007-10-2 5:49:13]

Thanks Michael. Actually, i did the following instead:setEditable(true); // Turn on the Editor (to get white background)getEditor().getEditorComponent().setFocusable(false); // But denied focus (thus, user can only select from dropdown)