Color color = JColorChooser.showDialog(this,
title,
myColor);
public static Color showDialog(Component component,
String title,
Color initialColor)
SebiB90 hat gesagt.:der JColorChosser ist modal, das bedeutet das das programm erst weiter läuft wenn der JColorChooser geschlossen wird bzw. eine farbe ausgewählt wurde.
This class provides three levels of API:
1. A static convenience method which shows a modal color-chooser dialog and returns the color selected by the user.
2. A static convenience method for creating a color-chooser dialog where ActionListeners can be specified to be invoked when the user presses one of the dialog buttons.
3. The ability to create instances of JColorChooser panes directly (within any container). PropertyChange listeners can be added to detect when the current "color" property changes.