“Kolor tła Java” Kod odpowiedzi

Jak ustawić ramkę Colo w Javie

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

Jak ustawić kolor zaplecza w Javie

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

or

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

Kolor Jframe

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

Kolor tła Java


myJFrame.getContentPane().setBackground( desiredColor );

Nice Newt

Jak ustawić kolor zaplecza w Javie

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

or

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

Kolor tła Java

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

Odpowiedzi podobne do “Kolor tła Java”

Pytania podobne do “Kolor tła Java”

Więcej pokrewnych odpowiedzi na “Kolor tła Java” w Java

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

Przeglądaj inne języki kodu