Setting background color for the JFrame - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T16:56:43Zhttp://stackoverflow.com/feeds/question/1081486http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081486/setting-background-color-for-the-jframe0Setting background color for the JFrameRaji2009-07-04T04:26:39Z2009-11-25T13:52:09Z
<p>how to set a background color for the jframe ???</p>
http://stackoverflow.com/questions/1081486/setting-background-color-for-the-jframe/1081491#10814912Answer by Brandon E Taylor for Setting background color for the JFrameBrandon E Taylor2009-07-04T04:30:18Z2009-07-04T04:42:25Z<p>Retrieve the content pane for the frame and use the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Component.html#setBackground%28java.awt.Color%29" rel="nofollow">setBackground()</a> method inherited from <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Component.html" rel="nofollow">Component</a> to change the color.</p>
<p>Example:</p>
<pre><code>myJFrame.getContentPane().setBackground( desiredColor );
</code></pre>
http://stackoverflow.com/questions/1081486/setting-background-color-for-the-jframe/1081494#10814940Answer by John T for Setting background color for the JFrameJohn T2009-07-04T04:32:33Z2009-07-04T04:32:33Z<p>You can use a container like so:</p>
<pre><code>Container c = JFrame.getContentPane();
c.setBackground(Color.red);
</code></pre>
<p>You must of course import java.awt.Color for the red color constant.</p>
http://stackoverflow.com/questions/1081486/setting-background-color-for-the-jframe/1081496#10814960Answer by iwanttoprogram for Setting background color for the JFrameiwanttoprogram2009-07-04T04:33:49Z2009-07-04T15:33:20Z<p>To set the background color for JFrame:</p>
<pre><code>getContentPane().setBackground(Color.YELLOW); //Whatever color
</code></pre>
http://stackoverflow.com/questions/1081486/setting-background-color-for-the-jframe/1794238#17942380Answer by Abdullah for Setting background color for the JFrameAbdullah2009-11-25T02:11:09Z2009-11-25T13:52:09Z<p>That's another method:</p>
<pre><code>private void RenkMouseClicked(java.awt.event.MouseEvent evt) {
renk=JColorChooser.showDialog(null,"Arka plan rengini buradan seçiniz",renk);
Container a=this.getContentPane();
a.setBackground(renk);
}
</code></pre>
<p>I'm using netbeans ide. So <code>JFrame.getContentPane()</code> didn't run. I used <code>JFrame.getContentPane()</code>'s class equivalent <code>this.getContentPane</code> method.</p>