I would like to change the background color of my jMenuItems on a rollover event :

enter image description here

Now it's blue, i want it white, how can I do ? (I use netbeans GUI)

Thank you very much.

Regards.

link|improve this question

50% accept rate
feedback

1 Answer

You can use something like:

UIManager.put("MenuItem.selectionBackground", Color.WHITE);

Problem is this will change the color for all menu items, even those added to a JMenu.

To control which menu items are changed you will need to create a custom MenuItem UI to replace the default. You will then need to modify the code to use your custom selection background color.

link|improve this answer
Hi, Where do I have to put this line ? UIManager.... – HappyLearner Dec 1 '11 at 2:02
Somewhere before you create your components. – camickr Dec 1 '11 at 4:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.