12
即時嘗試更改javafx-2中TextArea的背景和文本顏色。JavaFX-2 - 設置幾種風格
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());
顏色和字體均未在此TextArea中設置。我必須使用不同的方法嗎?
謝謝,現在你說明它總是有道理:) – Rouby