“Cómo agregar color de fondo en jframe” Código de respuesta

Cómo agregar color de fondo en jframe

import java.awt.Color;  //to be imported

		 JFrame frame = new JFrame("Figure");
	     frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
	     frame.getContentPane().setBackground(new Color(0,0,0)); //setting the background color
	     frame.setLocationRelativeTo(null);
	     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
			frame.pack();
			frame.setVisible(true);
Dead Dragonfly

Color de fondo jframe

setBackground(Color.red);
Strange Seahorse

Respuestas similares a “Cómo agregar color de fondo en jframe”

Preguntas similares a “Cómo agregar color de fondo en jframe”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código