“Color de fondo de Java” Código de respuesta

Cómo configurar el color de la colo en Java

getContentPane().setBackground(Color.YELLOW);  //Whatever color
Uninterested Unicorn

Cómo establecer el color admitido en Java

[your frame name].getContentPane().setBackground([your color here]);

or

[your panel name here].setBacroundColor([your color here])
Important Ibis

color jframe

private JFrame frame;
frame.getContentPane().setBackground(Color.BLACK);
Fine Fowl

Color de fondo de Java


myJFrame.getContentPane().setBackground( desiredColor );

Nice Newt

Cómo establecer el color admitido en Java

[your frame name].getContentPane().setBackground([your color here]);

or

[your panel name here].setBacroundColor([your color here])
	
Important Ibis

Color de fondo de Java

import java.awt.Color;
....
  
  
[your panel name here].setBackground(Color.[some color like BLACK]);
Xerothermic Xenomorph

Respuestas similares a “Color de fondo de Java”

Preguntas similares a “Color de fondo de Java”

Más respuestas relacionadas con “Color de fondo de Java” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código