vote up 0 vote down star

how to set a background color for the jframe ???

flag

3 Answers

vote up 2 vote down

Retrieve the content pane for the frame and use the setBackground() method inherited from Component to change the color.

Example:

myJFrame.getContentPane().setBackground( desiredColor );
link|flag
vote up 0 vote down

You can use a container like so:

Container c = JFrame.getContentPane();
c.setBackground(Color.red);

You must of course import java.awt.Color for the red color constant.

link|flag
vote up 0 vote down

To set the background color for JFrame:

getContentPane().setBackground(Color.YELLOW);  //Whatever color
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.