12
Estoy tratando de cambiar el fondo y el color del texto de un TextArea en javafx-2.JavaFX-2 - establecer varios estilos
myComponent = new TextArea();
myComponent.setStyle("-fx-text-fill: white;");
myComponent.setStyle("-fx-background-color: black;");
myComponent.setStyle("-fx-font: " + GUIConstants.SysResponseFont.getName());
myComponent.setStyle("-fx-font-family: " + GUIConstants.SysResponseFont.getFamily());
myComponent.setStyle("-fx-font-size: " + GUIConstants.SysResponseFont.getSize());
myComponent.setStyle("-fx-font-weight: " + GUIConstants.SysResponseFont.getStyle());
Ni los colores ni la fuente se configuran en este TextArea. ¿Tengo que usar un enfoque diferente?
Gracias, ahora que dices esto, tiene sentido :) – Rouby