Setting background color for the JFrame - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T16:56:43Z http://stackoverflow.com/feeds/question/1081486 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081486/setting-background-color-for-the-jframe 0 Setting background color for the JFrame Raji 2009-07-04T04:26:39Z 2009-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#1081491 2 Answer by Brandon E Taylor for Setting background color for the JFrame Brandon E Taylor 2009-07-04T04:30:18Z 2009-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#1081494 0 Answer by John T for Setting background color for the JFrame John T 2009-07-04T04:32:33Z 2009-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#1081496 0 Answer by iwanttoprogram for Setting background color for the JFrame iwanttoprogram 2009-07-04T04:33:49Z 2009-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#1794238 0 Answer by Abdullah for Setting background color for the JFrame Abdullah 2009-11-25T02:11:09Z 2009-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>