2016-03-09 1 views

ответ

0

Стиль HTMLEditor настраивается с помощью CSS.

.html-editor-foreground { 
    -fx-color-rect-width: 16; 
    -fx-color-rect-height: 16; 
    -fx-graphic: null; 
} 

Здесь стиль цвет переднего плана выбора выбрал цветовой индикатор, как (относительно) большой прямоугольник (с розовым цветом, выбранным для образца):

custom

Пример кода

import javafx.application.Application; 
import javafx.scene.Scene; 
import javafx.scene.web.HTMLEditor; 
import javafx.stage.Stage; 

public class EditorSample extends Application { 
    @Override 
    public void start(Stage stage) throws Exception { 
     HTMLEditor editor = new HTMLEditor(); 

     Scene scene = new Scene(editor); 
     scene.getStylesheets().add(
       this.getClass().getResource(
         "html-editor-large-color-rect.css" 
       ).toExternalForm() 
     ); 
     stage.setScene(scene); 
     stage.show(); 
    } 

    public static void main(String[] args) { 
     launch(args); 
    } 
} 
+0

Большое вам спасибо, jewelsea! – MartinJoo