How to Set the Background Color of a JButton on the Mac OS - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T09:45:32Z http://stackoverflow.com/feeds/question/1065691 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1065691/how-to-set-the-background-color-of-a-jbutton-on-the-mac-os 0 How to Set the Background Color of a JButton on the Mac OS Stephane Grenier 2009-06-30T19:57:24Z 2009-06-30T20:55:21Z <p>Normally with Java Swing you can set the background color of a button with:</p> <pre><code>myJButton.setBackground(Color.RED); </code></pre> <p>which would cause the button to be red. But on the Mac OS, this method seems to be ignored. The button just stays the default color.</p> <p>How can the color of a JButton be set on the Mac OS?</p> http://stackoverflow.com/questions/1065691/how-to-set-the-background-color-of-a-jbutton-on-the-mac-os/1066016#1066016 1 Answer by hasalottajava for How to Set the Background Color of a JButton on the Mac OS hasalottajava 2009-06-30T20:55:21Z 2009-06-30T20:55:21Z <p>Have you tried setting JButton.setOpaque(true)?</p> <pre><code>JButton button = new JButton("test"); button.setBackground(Color.RED); button.setOpaque(true); </code></pre>