Using Swing pre-1.0 (/usr/local/java/swing-pre-1.0) and JDK 1.1.5.
setBackground() does not have any effect on JCheckBox and JRadioButton.
This functionality used to work correctly in Swing 0.7.
The following example attempts to set the background color of
JButton, JCheckBox, and JRadioButton. Only JButton has the expected
background color.
========================================================================
import java.awt.*;
import java.awt.event.*;
import com.sun.java.swing.*;
/**
* An application that displays colored buttons, checkboxes,
* and radiobuttons
*/
public class ColorDemo extends JPanel {
static JFrame frame;
static JPanel buttonPanel, checkboxPanel, radiobuttonPanel, togglebuttonPanel;
static String blue = new String("Blue");
static String yellow = new String("Yellow");
public ColorDemo() {
super(true);
try {
// UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel");
// UIManager.setLookAndFeel("com.sun.java.swing.plaf.metal.MetalLookAndFeel");
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
} catch (Exception exc) {
System.err.println("Error loading L&F: " + exc);
}
setLayout(new GridLayout(0,1));
buttonPanel = new JPanel();
checkboxPanel = new JPanel();
radiobuttonPanel = new JPanel();
togglebuttonPanel = new JPanel();
// Create blue and yellow buttons, checkboxes, and radiobuttons
JButton blueButton = new JButton(blue);
JButton yellowButton = new JButton(yellow);
JCheckBox blueCheckbox = new JCheckBox(blue);
JCheckBox yellowCheckbox = new JCheckBox(yellow);
JRadioButton blueRadiobutton = new JRadioButton(blue);
JRadioButton yellowRadiobutton = new JRadioButton(yellow);
JToggleButton blueTogglebutton = new JToggleButton(blue);
JToggleButton yellowTogglebutton = new JToggleButton(yellow);
blueButton.setBackground(Color.blue);
yellowButton.setBackground(Color.yellow);
blueCheckbox.setBackground(Color.blue);
yellowCheckbox.setBackground(Color.yellow);
blueRadiobutton.setBackground(Color.blue);
yellowRadiobutton.setBackground(Color.yellow);
blueTogglebutton.setBackground(Color.blue);
========== yellowTogglebutton.setBackground(Color.yellow);
buttonPanel.add(blueButton);
buttonPanel.add(yellowButton);
checkboxPanel.add(blueCheckbox);
checkboxPanel.add(yellowCheckbox);
radiobuttonPanel.add(blueRadiobutton);
radiobuttonPanel.add(yellowRadiobutton);
togglebuttonPanel.add(blueTogglebutton);
togglebuttonPanel.add(yellowTogglebutton);
add(buttonPanel);
add(checkboxPanel);
add(radiobuttonPanel);
add(togglebuttonPanel);
}
public static void main(String s[]) {
WindowListener l = new WindowAdapter() {
public void windowClosing(WindowEvent e) {System.exit(0);}
};
frame = new JFrame("Color Demo");
frame.addWindowListener(l);
frame.getContentPane().add("Center", new ColorDemo());
frame.pack();
frame.setVisible(true);
}
}
==============================================================
Name: rpC71689 Date: 03/19/98
I want to add some information to the description:
JLabel has that problem with background color, too, even in metal.
I was using swing-1.0.1.
======================================================================