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 build simple search page using ZK and Spring Boot? - March 8, 2023
- How do I calculate days between two dates excluding weekends and holidays? - January 12, 2023
- How do I discover the quarter of a given date? - January 11, 2023