To create an instance of a JColorChooser
with a default or initial color such as Color.BLUE
you can pass the Color
object to the constructor of the JColorChooser
component. The example below shows how to do it.
package org.kodejava.swing;
import javax.swing.*;
import java.awt.*;
public class JColorChooserDefaultColor extends JFrame {
public JColorChooserDefaultColor() throws HeadlessException {
initializeUI();
}
public static void main(String[] args) {
SwingUtilities.invokeLater(
() -> new JColorChooserDefaultColor().setVisible(true));
}
private void initializeUI() {
setTitle("JColorChooser Demo");
setLayout(new BorderLayout());
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
// Creates an instance of JColorChooser and set Color.BLUE
// as the default selected color.
JColorChooser jcc = new JColorChooser(Color.BLUE);
getContentPane().add(jcc, BorderLayout.CENTER);
this.pack();
}
}
Latest posts by Wayan (see all)
- How do I use the LongToDoubleFunction functional interface in Java? - March 15, 2025
- How do I use the LongSupplier functional interface in Java? - March 14, 2025
- How do I use the LongPredicate functional interface in Java? - March 14, 2025