“Jak dodać kolor tła w JFrame” Kod odpowiedzi

Jak dodać kolor tła w 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

Kolor tła JFrame

setBackground(Color.red);
Strange Seahorse

Odpowiedzi podobne do “Jak dodać kolor tła w JFrame”

Pytania podobne do “Jak dodać kolor tła w JFrame”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu