vote up 0 vote down star

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

flag

4 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
vote up 0 vote down

That's another method:

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);
}

I'm using netbeans ide. So JFrame.getContentPane() didn't run. I used JFrame.getContentPane()'s class equivalent this.getContentPane method.

link|flag

Your Answer

Get an OpenID
or

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