“jframe color” Ответ

Как установить кадр Colo на Java

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

Изменить цвет jframe

import java.awt.Color;
import java.awt.Dimension;
import javax.swing.JFrame;
public class SwingDemo {
   public static void main(String[] args) {
      JFrame frame = new JFrame();
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.setPreferredSize(new Dimension(550, 300));
      frame.getContentPane().setBackground(Color.BLUE);
      frame.pack();
      frame.setVisible(true);
   }
}

jframe color

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

Ответы похожие на “jframe color”

Вопросы похожие на “jframe color”

Смотреть популярные ответы по языку

Смотреть другие языки программирования