package bug; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.ColorPicker; import javafx.scene.layout.VBox; import javafx.stage.Stage; /** * * @author fx */ public class Bug extends Application { @Override public void start(Stage stage) throws Exception { VBox root = new VBox(); ColorPicker cp = new ColorPicker(); root.getChildren().add(cp); Scene scene = new Scene(root,200,200); stage.setScene(scene); stage.show(); } }