Specifying external font in JavaFX CSS

后端 未结 5 644
天涯浪人
天涯浪人 2020-12-08 15:52

Is it possible to specify a font using CSS in JavaFX application? I have an FXML scene and the corresponding CSS file. In Java code, it\'s possible to specify a font using t

5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-08 16:40

    I use a combination of application code and CSS to style via an external font.

    I place the loadFont call inside an overridden Application init method to make sure it is invoked before anything much happened in the application.

    Font.loadFont(CustomFontTest.class.getResource("TRON.TTF").toExternalForm(), 10);
    

    To use the font, I reference the font by font family in CSS:

    .menu-bar {
        -fx-background-color: transparent;
        -fx-font-family: TRON;
        -fx-font-size: 40px;
    }
    
    .context-menu {
        -fx-font-family: TRON;
        -fx-background-color: transparent;
        -fx-font-size: 12px;
    }
    

    Nice that the CSS sizes the fonts fine. Even when the font is loaded at size 10, the font was resized correctly to what is specified in the CSS -fx-font-size specifications.

    Inline styling of a label via CSS using a Font loaded during application initialization also works fine:

    Label testControl = new Label("TRON");
    testControl.setStyle("-fx-font-family: TRON; -fx-font-size: 120;");
    

    The TRON font was downloaded from dafont and placed in the same directory as the CustomFontTest class and copied to the build output directory by the build system.

    Answer copied from my answer to a forum post on "Using Custom Fonts".

提交回复
热议问题