A good place to take a look at is
Swing Examples For your problem
you should keep an eye on the UIManager and its lookup table. For instance you could make the following invocation at startup of your app (that is before anything is displayed):
or at runtime you do the same stuff and additionally do an
on the desired combo box. The last step is necessary to update the already instantiated combo box.
This should work