A: 

you need to change arrow image , and in style change background for this JComboBox !

Alexander Corotchi
+2  A: 

You have to write your own ComboBoxUI class. I suggest to look at either Synth or Nimbus Look and Feel to make it easier.

eugener
thanks will look at it
n002213f
A: 

use WindowsLookAndFeel;

this works if and only if you are running your application in winows;

in your main you can do this before creating any UI:


try{
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}catch(Exception ignore){
}
Santhosh Kumar T
Unfortunately the app will be run in the wild, and may be launched on any OS
n002213f