如何在java FX的下拉列表中更改文本大小?目前它没有按照CSS顺利出来。通过浏览器运行URL时看起来很好。但是,当在JAVA FX中加载和查看URL时,下拉文本大小非常小。
这是我的代码:
public void start(Stage stage) throws InterruptedException {
stage.setTitle("test");
Pane stackPane = new Pane();
Browser browser = new Browser();
stackPane.getChildren().add(browser);
Rectangle2D primaryScreenBounds = Screen.getPrimary().getVisualBounds();
webScene = new Scene(stackPane, primaryScreenBounds.getWidth(), (primaryScreenBounds.getHeight()-50), Color.web("red"));
webScene.getStylesheets().add(this.getClass().getResource("main.css").toExternalForm());
stage.setScene(webScene);
stage.show();
}
public Browser() {
//apply the styles
getStyleClass().add("browser");
String url = "http://localhost:8000/myapp";
webEngine.load(url);
getChildren().add(browser);
}