background colour of jframe in java code example
Example 1: JFrame background color
setBackground(Color.red);
Example 2: jframe color
private JFrame frame;
frame.getContentPane().setBackground(Color.BLACK);
setBackground(Color.red);
private JFrame frame;
frame.getContentPane().setBackground(Color.BLACK);