How to Set the Background Color of a JButton on the Mac OS - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T09:45:32Zhttp://stackoverflow.com/feeds/question/1065691http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1065691/how-to-set-the-background-color-of-a-jbutton-on-the-mac-os0How to Set the Background Color of a JButton on the Mac OSStephane Grenier2009-06-30T19:57:24Z2009-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#10660161Answer by hasalottajava for How to Set the Background Color of a JButton on the Mac OShasalottajava2009-06-30T20:55:21Z2009-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>