JavaFX如何应用CSS主题

时间:2015-03-25 14:25:28

标签: css netbeans javafx

我找到了这个JavaFX主题:http://www.guigarage.com/javafx-themes/flatter/

我现在已经尝试了2个小时来实施它。但我真的不知道如何。

有人能告诉我如何激活这个主题吗? 我正在使用Netbeans(JavaFX应用程序)和JavaFX Scene Builder 2.0

1 个答案:

答案 0 :(得分:5)

在将依赖项添加到项目后,您只需在代码中添加FlatterFX.style();

示例

public class FlatterExample extends Application {

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage stage) {
        Button button = new Button("Flatter");
        Scene scene = new Scene(new VBox(button), 300, 250);
        stage.setScene(scene);
        stage.show();
        FlatterFX.style();
    }
}

<强>截图

enter image description here