JavaFX: Cannot set font size programmatically after font being set by CSS

前端 未结 1 1772
花落未央
花落未央 2020-12-19 10:18

I have stored the default font type and size of my application in a CSS file which I apply using the code:

label.getStyleClass().add(\"labelStyleClass\");


        
相关标签:
1条回答
  • 2020-12-19 10:42

    It's by design. For architectural reasons chain of overrides for css works as follows:

    default caspian.css < API settings < user's Scene css < user's Parent css < setStyle()

    Here is the quote from css reference guide:

    The JavaFX CSS implementation applies the following order of precedence; a style from a user agent style sheet has lower priority than a value set from code, which has lower priority than a Scene or Parent style sheet. Inline styles have highest precedence. Style sheets from a Parent instance are considered to be more specific than those styles from Scene style sheets.

    Thus, you can achieve your goal by using setStyle() instead of an API call. Try to run the next example:

    public void start(Stage stage) {
        VBox root = new VBox(10);
    
        Scene scene = new Scene(root, 300, 250);
        // font.css: .labelStyleClass { -fx-font-size: 20 }
        scene.getStylesheets().add(getClass().getResource("font.css").toExternalForm());
    
        root.getChildren().add(LabelBuilder.create().text("default").build());
        root.getChildren().add(LabelBuilder.create().text("font-css").styleClass("labelStyleClass").build());
    
        Label lblApi = LabelBuilder.create().text("font-css-api (doesn't work)").styleClass("labelStyleClass").build();
        lblApi.setFont(Font.font(lblApi.getFont().getFamily(), 40));
        root.getChildren().add(lblApi);
    
        Label lblStyle = LabelBuilder.create().text("font-css-setstyle (work)").styleClass("labelStyleClass").build();
        lblStyle.setStyle("-fx-font-size:40;");
        root.getChildren().add(lblStyle);
    
        stage.setTitle("Hello World!");
        stage.setScene(scene);
        stage.show();
    }
    
    0 讨论(0)
提交回复
热议问题