كيف أقوم بتغيير خلفية الـJMenuBar في Swing؟
أنا استخدمت الكود التالي:
menuBar.setBackground(Color.decode("#00ffe7"));
وأيضا هذا الكود:
for (int j = 0; j < menuBar.getMenuCount(); j++) { menuBar.getMenu(j).setBackground(Color.decode("#00ffe7")); }
ولكنهما لا يعملان. لماذا؟